问答详情
源自:2-1 vue-loader+webpack项目配置

这是什么报错?

 throw new Error("'output.filename' is required, either in config file or as --output-filename");


我的代码:

const path = require('path')

module.exports = {

entry: path.join(__dirname, './src/index.js'),

output: {

filename: 'bundle.js',

path: path.join(__dirname, 'dist')

},

module: {

rules: [

{

test: /\.vue?$/,

loader: 'vue-loader'

}

]

}

}


提问者:盗墓小哥 2018-02-28 16:06

个回答

  • 江小陌
    2018-10-22 11:53:00

    解决了吗?我也是这样。

  • 九月花开
    2018-02-28 17:13:41

    没有发现什么问题呃。。跟我的代码 一样