Kaynağa Gözat

update Web/vite.config.ts.
解决运行时(pnpm run dev)的警告提示:[plugin-web-update-notice] The version type 'undefined' is not supported!, we will use the packaging timestamp instead
package.json中只添加"type": "module",并不能去掉上面的提示。
在vite.config.ts中添加versionType: 'build_timestamp',即可解决问题。亲测有效!

Signed-off-by: X5ZJ <x5zj@qq.com>

X5ZJ 1 yıl önce
ebeveyn
işleme
f9037acc2b
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      Web/vite.config.ts

+ 1 - 0
Web/vite.config.ts

@@ -31,6 +31,7 @@ const viteConfig = defineConfig((mode: ConfigEnv) => {
 			vue(),
 			vueJsx(),
 			webUpdateNotice({
+                versionType: 'build_timestamp',
 				notificationConfig: {
 					placement: 'topLeft',
 				},