On the [Dependency Resolution](https://parceljs.org/features/dependency-resolution/#glob-specifiers) page, in section `Glob specifiers`, it reads: > Glob imports also work with CSS: > ```css > @import "./components/*.css"; > ``` > is equivalent to: > ```css > @import "./components/button.css"; > @import "./components/dropdown.css"; > ``` Sequence of imported files may be key in certain situations, as CSS rules may overwrite each other. Please, specify how imports are sorted when using `@parcel/resolver-glob`.