فهرست منبع

vite对.store文件夹打包生成.store-xxx.js等文件,服务程序无法对 . 开头的文件正确路由的问题处理。

Signed-off-by: Murry <murry666@foxmail.com>
Murry 2 سال پیش
والد
کامیت
8f6483e6cd
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      Web/vite.config.ts

+ 2 - 1
Web/vite.config.ts

@@ -64,7 +64,8 @@ const viteConfig = defineConfig((mode: ConfigEnv) => {
 					assetFileNames: 'assets/[ext]/[name]-[hash].[ext]',
 					manualChunks(id) {
 						if (id.includes('node_modules')) {
-							return id.toString().match(/\/node_modules\/(?!.pnpm)(?<moduleName>[^\/]*)\//)?.groups!.moduleName ?? 'vender';
+							let newId = id.toString().replace("/.", "/");
+							return newId.match(/\/node_modules\/(?!.pnpm)(?<moduleName>[^\/]*)\//)?.groups!.moduleName ?? 'vender';
 						}
 					},
 				},