我正在使用webpack构建我的React组件,并且试图使用extract-text-webpack-plugin
来从生成的js文件中分离出CSS。但是,当我尝试构建组件时,出现以下错误:
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')