mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(cli): add webpack config guide
This commit is contained in:
parent
96991fd892
commit
02cf4af16c
@ -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
|
||||
}
|
||||
};
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user