js と css を同じフォルダーに保持する React コンポーネントを作成したい (コンポーネントごとに):
- ダイアログ
- Container.jsx
- プレゼンテーション.jsx
- スタイル.レス
これが私のwebpack構成の一部です:
module: {
loaders: [
{
test: /\.(js|jsx)$/,
loader: 'babel',
exclude: /(node_modules)/,
query: {
presets: [
['react'],
['es2015'],
['stage-0']
],
plugins: [
['transform-decorators-legacy'],
['transform-runtime'],
['transform-react-remove-prop-types'],
['transform-react-constant-elements'],
['transform-react-inline-elements']
]
}
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract(['css-loader', 'less-loader']),
}
],
},
plugins: [
new webpack.NoEmitOnErrorsPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"'
}),
new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
}),
new webpack.optimize.UglifyJsPlugin({
beautify: false,
comments: false,
sourceMap: true,
compress: {
sequences: true,
booleans: true,
loops: true,
unused: true,
warnings: false,
drop_console: true,
unsafe: true
}
}),
new ExtractTextPlugin({
filename: 'bundle.css',
allChunks: true
}),
new OptimizeCssAssetsPlugin({
assetNameRegExp: /\.css$/g,
cssProcessor: require('cssnano'),
cssProcessorOptions: {
discardComments: {
removeAll: true
}
},
canPrint: true
})
],
Webpack はbundle.js
+個のbundle.css
ファイルを作成します。一瞬を除いて、期待どおりに機能すると思います。bundle.js
からのcssが含まれていることがわかりましたbundle.css
。
たとえば、 のサイズbundle.css
が 50KB の場合、bundle.js
= 自身のサイズ + 50KB です。
js バンドルに重複した css コードは必要ありません。それで、それを修正する方法は?