webpack打包问题

来源:2-1 建立项目的 webpack 配置文件

沐野江南

2017-07-30 18:16

我是这么写的

module.exports = {

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

    output: {

        path: './bin/',

        filename: 'app.bundle.js'

    }

};

报错:

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

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


我看到视频和webpack 官网都是这么写的 怎么在我这就报错呢 想不明白,希望大神们给指点下,谢谢

写回答 关注

2回答

  • 离玮
    2017-08-08 11:26:29

    npm uninstall webpack --save-dev

    npm install webpack@2.1.0-beta.22 --save-dev

    你试一下

    Arkin丶 回复离玮

    能帮助我的,都是我老师 [机智]

    2017-08-15 15:17:42

    共 5 条回复 >

  • WeiProgrammer
    2017-07-30 18:53:52

    output.path 必须是一个绝对路径 可以使用 path.resolve(__dirname, './bin/');

webpack深入与实战

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

86561 学习 · 721 问题

查看课程

相似问题