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 use both "extract-text-webpack-plugin" and "webpack.optimize.CommonsChunkPlugin"
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
plugins: [
new ExtractTextPlugin("css/[name].css"),
new webpack.optimize.CommonsChunkPlugin('js/common.js')
]
}
i have multiple entrypoints and require the same style file,and after packaging,there is a common style file named common.js.css
how i can control the common style file's name or avoid optimizing style files to a common file ?
The text was updated successfully, but these errors were encountered:
when i use both "extract-text-webpack-plugin" and "webpack.optimize.CommonsChunkPlugin"
i have multiple entrypoints and require the same style file,and after packaging,there is a common style file named
common.js.css
how i can control the common style file's name or avoid optimizing style files to a common file ?
The text was updated successfully, but these errors were encountered: