安装完毕,并按照老师的步骤解决问题后,还是有错误

来源:4-2 使用 babel-loader 转换 ES6 代码(上)

慕粉1628224626

2017-08-07 22:00

Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.

 - configuration.output.path: The provided value "./dist" is not an absolute path!


写回答 关注

3回答

  • qq_手起樱花落_0
    2017-08-21 13:54:36

    var path = require('path');

    output:{

    path: path.resolve(__dirname, './build'),

    filename:'build.js'

    },


  • wuson
    2017-08-20 15:22:15

    path.resolve(__dirname,'./dist/js')

  • 太男子主義
    2017-08-08 14:07:46

    configuration.output.path  路径现在必须是绝对路径了,你可以用node 的path.resolve来生成绝对路径


webpack深入与实战

webpack实战教程,用真实项目带你探索 webpack 强大的功能

86561 学习 · 721 问题

查看课程

相似问题