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
Since this does not use es6 exports and instead uses module.exports, webpack is unable to inline these. If this plugin did use es6 exports, my bundle size would be much smaller because they could be inlined:
Hi,
Right now when I use this plugin my bundle ends up having a bunch of these:
Since this does not use es6 exports and instead uses
module.exports
, webpack is unable to inline these. If this plugin did use es6 exports, my bundle size would be much smaller because they could be inlined:Code coming out of this plugin:
Then, after Webpack processes it, the css module would be inlined, and unused properties would be removed.
I made a fork of
extract-text-webpack-plugin
that does this: webpack-contrib/extract-text-webpack-plugin@master...calebeby:masterWould you accept a similar PR to this repo?
Thanks!!!
The text was updated successfully, but these errors were encountered: