Webpack 学习记录-01
Posted 小鱼小小梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Webpack 学习记录-01相关的知识,希望对你有一定的参考价值。
Webpack 2.0系列
1,output path路径必须为absolute path.
{ entry: ‘./src/app.js‘, output: { filename: ‘bundle.js‘, path: __dirname + ‘/build‘ } }
output.path
The output directory as an absolute path (required).
若写为: path:"./dist/js" 则报错如下:
Invalid configuration object. Webpack has been initialised using a configuration
object that does not match the API schema.
- configuration.context: The provided value "./dist/js" is not an absolute path!
以上是关于Webpack 学习记录-01的主要内容,如果未能解决你的问题,请参考以下文章