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
When I make a change to one of the module files, WebPack does not run. It will only run if I change app/styles/app.css—which makes sense, but is a bit inconvenient. I'm using the postcss-loader plugin to handle my @import declarations, so WebPack wouldn't know to "watch" the CSS files that are imported.
Is there a way to work around this issue though? Maybe by specifying a glob of files to watch in the PostCSS config?
The text was updated successfully, but these errors were encountered:
As of right now, my setup is that I have one CSS file in
app/styles/app.css
, which imports a number of modules. For example:This CSS file is required in
app/app.js
.When I make a change to one of the module files, WebPack does not run. It will only run if I change
app/styles/app.css
—which makes sense, but is a bit inconvenient. I'm using the postcss-loader plugin to handle my@import
declarations, so WebPack wouldn't know to "watch" the CSS files that are imported.Is there a way to work around this issue though? Maybe by specifying a glob of files to watch in the PostCSS config?
The text was updated successfully, but these errors were encountered: