沐野江南
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 官网都是这么写的 怎么在我这就报错呢 想不明白,希望大神们给指点下,谢谢
npm uninstall webpack --save-dev
npm install webpack@2.1.0-beta.22 --save-dev
你试一下
output.path 必须是一个绝对路径 可以使用 path.resolve(__dirname, './bin/');
webpack深入与实战
86561 学习 · 721 问题
相似问题