问答详情
源自:2-1 建立项目的 webpack 配置文件

webpack打包问题

我是这么写的

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 官网都是这么写的 怎么在我这就报错呢 想不明白,希望大神们给指点下,谢谢

提问者:沐野江南 2017-07-30 18:16

个回答

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

    npm uninstall webpack --save-dev

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

    你试一下

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

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