You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2024. It is now read-only.
I've got lots of projects which require themselves other projects. I have the same folder/file convention naming in each of these project and it could create some non explicite conflicts.
Why? Because I do that: @import "views/index.css";
cssnext can be lost if you do @import "views/index.css"; in a submodule and in your module, you've already have "views/index.css".
To fix it, you have to specify ./ like @import "./views/index.css";. It's maybe obvious for some of you but it could be added in the doc I think. What do you think?
I've got lots of projects which require themselves other projects. I have the same folder/file convention naming in each of these project and it could create some non explicite conflicts.
Why? Because I do that:
@import "views/index.css";cssnext can be lost if you do
@import "views/index.css";in a submodule and in your module, you've already have"views/index.css".To fix it, you have to specify
./like@import "./views/index.css";. It's maybe obvious for some of you but it could be added in the doc I think. What do you think?