ReferenceError:未定义webpack

时间:2015-07-23 16:15:40

标签: node.js webpack

在我的webpack应用程序中,我有一个由" npm run build"触发的基本构建过程。执行webpack二进制文件并将/ index中的index.html复制到/ dist。每当我运行npm run build时,我都会ReferenceError: webpack is not defined,但当我运行启动webpack-dev服务器的npm start时,一切都很顺利。

这是我的webpack配置文件:

var ExtractTextPlugin = require('extract-text-webpack-plugin');

var config = {
    context: __dirname + '/app',
    entry: './index.js',
    output: {
        path: __dirname + '/app',
        filename: 'app.js'
    },
    module: {
        loaders: [
            { test: /\.js$/, loader: 'babel', exclude: /node_modules/ },
            { test: /\.html$/, loader: 'raw', exclude: /node_modules/ },
            { test: /\.scss$/, loader: ExtractTextPlugin.extract('style', 'css!sass'), exclude: /node_modules/}
        ]
    },
    plugins: [
        new ExtractTextPlugin('app.css')
    ]
};

if (process.env.NODE_ENV == 'production') {
    config.output.path = __dirname + '/dist';
    config.plugins.push(new webpack.optimize.UglifyJsPlugin());
}

module.exports = config;

1 个答案:

答案 0 :(得分:111)

你错过了

var webpack = require('webpack');

在文件的开头。如果您想稍微优化执行,可以将其推送到您的if块内。