Compare commits

...

3 Commits

Author SHA1 Message Date
chenjiahan
5164f361e7 docs(@vant/cli): changelog v2.9.1 2021-03-26 10:10:14 +08:00
chenjiahan
9df41abff5 chore: release @vant/cli@2.9.1 2021-03-26 10:09:09 +08:00
nemo-shen
df8b2a6d51
fix(vant-cli): fixed app cannot HMR when port is not 8080 (#8408)
Co-authored-by: nemo-shen <1034131477@qq.com>
2021-03-26 10:08:20 +08:00
3 changed files with 12 additions and 3 deletions

View File

@ -1,5 +1,11 @@
# 更新日志
## v2.9.1
`2021-03-26`
- 修复非 8080 端口无法热更新的问题
## v2.9.0
`2021-03-17`

View File

@ -1,6 +1,6 @@
{
"name": "@vant/cli",
"version": "2.9.0",
"version": "2.9.1",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",

View File

@ -21,7 +21,10 @@ function runDevServer(
port: number,
config: ReturnType<typeof getSiteDevConfig>
) {
const server = new WebpackDevServer(webpack(config), config.devServer);
const server = new WebpackDevServer(webpack(config), {
...config.devServer,
port,
});
// this is a hack to disable wds status log
(server as any).showStatus = function () {};