私はwebpackを使用してreactコンポーネントを構築しており、を使用しextract-text-webpack-plugin
てcssを生成されたjsファイルから分離しようとしています。ただし、コンポーネントをビルドしようとすると、次のエラーが発生します
Module build failed: ReferenceError: window is not defined
。
私のwebpack.config.jsファイルは次のようになります。
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
entry: {
MainComponent: './src/main.js'
},
output: {
libraryTarget: 'var',
library: 'MainComponent',
path: './build',
filename: '[name].js'
},
module: {
loaders: [{
test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader!css-loader')
}]
},
plugins: [
new ExtractTextPlugin('styles.css')
]
}
ExtractTextPlugin.extract('style-loader!css-loader')
あなたが書く必要があるのではなくExtractTextPlugin.extract('style-loader', 'css-loader')