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
Directory Project_1 is shared and cannot be modified.
Inside Project_2, when referencing Project_1/style.css, Error: No PostCSS Config found in Project_1/.. is always thrown if no options is given in the loader (notice that postcss.config.js is not resolved).
And as we all known, passing options to the loader usually breaks because many loaders (for example, vue-loader) stringify the options and plugin got lost. Thus I cannot pass options to the loader either.
How can this be solved?
The text was updated successfully, but these errors were encountered:
Advice about was from things like PreCSS. If you need just project-specific tools, like Autoprefixer. You should pass plugins as options to loader (there is no other way).
webpack 2.
Directory Project_1 is shared and cannot be modified.
Inside Project_2, when referencing
Project_1/style.css
,Error: No PostCSS Config found in Project_1/..
is always thrown if no options is given in the loader (notice thatpostcss.config.js
is not resolved).And as we all known, passing options to the loader usually breaks because many loaders (for example, vue-loader) stringify the options and plugin got lost. Thus I cannot pass options to the loader either.
How can this be solved?
The text was updated successfully, but these errors were encountered: