npm run build 出错了

来源:2-1 vue-loader+webpack项目配置

慕先生6553767

2018-04-26 20:27

https://img4.mukewang.com/5ae1c4950001a73f14470720.jpghttps://img2.mukewang.com/5ae1c5170001c17914550803.jpg为什么出错了https://img.mukewang.com/5ae1c5230001f42a14450513.jpghttps://img3.mukewang.com/5ae1c4fc0001cc6314550814.jpg

写回答 关注

4回答

  • 慕函数1407489
    2018-04-27 01:40:36
    已采纳

    出现了同样的错误,根据https://vue-loader.vuejs.org/guide/提示,修改为如下内容即可。

    const path = require('path')

    const { VueLoaderPlugin } = require('vue-loader')


    module.exports = {

    mode: 'development',


    entry: './src/index.js',


    output: {

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

    filename: 'bundle.js'

    },


    module: {

    rules: [

    {

    test: /\.vue$/,

    loader: 'vue-loader'

    },

    // this will apply to both plain .js files

    // AND <script> blocks in vue files

    {

    test: /\.js$/,

    loader: 'babel-loader'

    },

    // this will apply to both plain .css files

    // AND <style> blocks in vue files

    {

    test: /\.css$/,

    use: [

    'vue-style-loader',

    'css-loader'

    ]

    }

    ]

    },

    plugins: [

    // make sure to include the plugin for the magic

    new VueLoaderPlugin()

    ]

    }

    可能还会有错误,例如“ERROR in Entry module not found: Error: Can't resolve 'babel-loader' in 'C:\Users\hbs\own\project\vuetest'”之类的,安装相应包即可。

    慕先生655...

    非常感谢!

    2018-04-27 16:24:46

    共 1 条回复 >

  • 慕码人6349566
    2018-05-27 14:17:30

    666老铁给力,刚刚接触,还是多谢大家帮助

  • 诺诺哪
    2018-05-07 10:16:07

    OK了 ,非常感谢

  • 诺诺哪
    2018-05-07 10:02:44

    求代码贴图 。同样的问题

Vue+Webpack打造todo应用

用前端最热门框架Vue+最火打包工具Webpack打造todo应用

84606 学习 · 787 问题

查看课程

相似问题