Я использую webpack для создания своих реагирующих компонентов, и я пытаюсь использовать его, 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')