webpack输出文件名配置错误

时间:2017-03-21 19:08:45

标签: javascript reactjs webpack

当我尝试运行npm run webpack时,显示"错误:' output.filename'在配置文件或--output-filename中都是必需的。"

配置文件被正确命名为webpack.config.js,并且也位于根目录中。

以下是配置文件中的内容:

var path = require('path');
var webpack = require('webpack');

module.exports - {
    entry: './app.js',
    output: { path: __dirname, filename: 'bundle.js' },

    module: {
        loaders: [
            {
                test: /.jsx?$/,
                loader: 'babel-loader',
                exclude: /node-modules/,
                query: {
                    presets: ['es2015', 'react']
                }
            }
        ]
    },
};

非常感谢帮助

1 个答案:

答案 0 :(得分:1)

您遇到语法错误。 module.exports - 应该:  module.exports = 顺便说一句,您不需要在配置文件中要求webpack。