为了账号安全,请及时绑定邮箱和手机立即绑定

这个错误是webpack版本低了吗?怎么搞,小白提问

这个错误怎么弄哈 npm ERR! errno 1 npm ERR! my_vue_webpack@1.0.0 build: `webpack --config webpack.config.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the my_vue_webpack@1.0.0 build script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

正在回答

1 回答

15版本就把下面代码粘到webpack文件

const path = require("path");


// webpack.config.js


const VueLoaderPlugin = require('vue-loader/lib/plugin')




module.exports = {


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




output: {


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


filename: "bundle.js"


},




module: {


rules: [


{


test: /.vue$/,


loader: "vue-loader"


},


{


test: /.css$/,


loader: "css-loader"


},


]


},


plugins: [


new VueLoaderPlugin()


]


}


2 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这个错误是webpack版本低了吗?怎么搞,小白提问

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信