盗墓小哥
2018-02-28 16:06
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'
}
]
}
}
解决了吗?我也是这样。
没有发现什么问题呃。。跟我的代码 一样
Vue+Webpack打造todo应用
84606 学习 · 787 问题
相似问题