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 has been archived by the owner on May 20, 2020. It is now read-only.
Right now, we have to specify an output JavaScript file for webpack to compile but we don't ever reference that file and it'd be nice to stop even generating it in the first place.
Instead, we use a file-loader along with an extract-loader to put all of our webpacked CSS into a separate file (so we concurrently load JavaScript and CSS instead of putting it all into index.js like we do with our app).
The text was updated successfully, but these errors were encountered:
fix(src/site/webpack.config.js): don't generate unused
index.css.js
fileRight now, we have to specify an output JavaScript file for
webpack
to compile but we don't ever reference that file and it'd be nice to stop even generating it in the first place.Instead, we use a
file-loader
along with anextract-loader
to put all of our webpacked CSS into a separate file (so we concurrently load JavaScript and CSS instead of putting it all intoindex.js
like we do with our app).The text was updated successfully, but these errors were encountered: