docs(cli): add webpack config guide

This commit is contained in:
陈嘉涵 2020-01-12 17:09:14 +08:00
parent 96991fd892
commit 02cf4af16c

View File

@ -179,3 +179,15 @@ module.exports = {
}
};
```
## Webpack
根目录下的`webpack.config.js`文件会通过 [webpack-merge](https://github.com/survivejs/webpack-merge) 合并到最终的配置中。因此可以灵活地自定义 Webpack 配置,比如修改 devServer 端口:
```js
module.exports = {
devServer: {
port: 9000
}
};
```