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

npm run build失败

npm run build失败

npm ERR! code ELIFECYCLE

npm ERR! errno 1

npm ERR! vue-loader-webpack@1.0.0 build: `webpack --config webpack.config.js`

npm ERR! Exit status 1

npm ERR!

npm ERR! Failed at the vue-loader-webpack@1.0.0 build script.

npm ERR! This is probably not a problem with npm. There is likely additional logging output above.


npm ERR! A complete log of this run can be found in:

npm ERR!     C:\Users\lianghuiling\AppData\Roaming\npm-cache\_logs\2018-05-24T12_38_35_039Z-debug.log


提问者:qq_蔷薇_4 2018-05-24 20:42

个回答

  • 扬风吹雨
    2018-05-25 11:35:23
    已采纳

    errno 1 我也遇到过,这个课程是webpack3.0的,你练习应该是用的4.0,需要加webpack-cli依赖

  • 慕斯理
    2020-11-04 16:48:49

    npm run build

    这个要怎么指定环境啊大佬们 网上找的试了都不行

  • 慕标7227027
    2018-06-03 18:38:00

    这个最后解决没有,是怎么解决的,急求

  • Guaje7Villa
    2018-05-31 16:49:26

    webpack用的新版

    "webpack": "^4.9.1"

    同时还要添加这个依赖

    "webpack-cli": "^2.1.4"

    然后配置文件如下写 即可正常build


    const path = require('path')
    const VueLoaderPlugin = require('vue-loader/lib/plugin')
    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'
    }, {
    test: /\.css$/,
    use: [
    'css-loader'
    ]
    }]
    },
    plugins: [
    new VueLoaderPlugin()
    ]
    }


  • qq_意料之中_0
    2018-05-26 20:30:25

    兄弟,你解决了吗,我找了好半天资料都没人解决啊


  • _蛰伏
    2018-05-25 11:17:54

    需要先在package.json中进行配置先 ,才可以进行使用
    "<scripts>":{

    "build":"webpack --config webpack.config.js"

    }