flingyp / vitepress-demo-preview

⚙️⚙️⚙️ Vue component demo preview and source code show of vitepress
https://flingyp.github.io/vitepress-demo-preview
MIT License
112 stars 15 forks source link

vitepress build docs 之后服务好像没有停止掉 #39

Closed wangxiaoze-view closed 3 months ago

wangxiaoze-view commented 3 months ago
// 使用的版本
{
 "@vitepress-demo-preview/component": "^2.3.2",
    "@vitepress-demo-preview/plugin": "^1.2.3"
    }

我使用 的是最新的版本, 但是在执行build命令会发现: image

build complete in 4.71s. 提示打包完成了,但是服务还在,没有停止掉;

但是我把这俩个插件删掉之后,再次build 服务就停止了;

我不确定的是什么原因导致的?

flingyp commented 3 months ago

image

我这边升级了下 example 下的 vitepress 版本后,打包了一下没出现你这个问题

wangxiaoze-view commented 3 months ago

image

我这边升级了下 example 下的 vitepress 版本后,打包了一下没出现你这个问题

好奇怪,我用vercel 部署的时候也没有停止最终的服务(晚点时候我在重新试一下),于是我临时加了一个终止的代码:

export default defineConfig({
buildEnd() {
exit();
},
})

但是我不确定会不会有什么太大影响;