chenjun 2 жил өмнө
parent
commit
871e608975
2 өөрчлөгдсөн 7 нэмэгдсэн , 1 устгасан
  1. 1 1
      package.json
  2. 6 0
      vite.config.ts

+ 1 - 1
package.json

@@ -52,7 +52,7 @@
     "@types/node": "^17.0.35",
     "@typescript-eslint/eslint-plugin": "5.5.0",
     "@typescript-eslint/parser": "5.5.0",
-    "@vitejs/plugin-legacy": "1.6.4",
+    "@vitejs/plugin-legacy": "^4.0.2",
     "@vitejs/plugin-vue": "^2.3.3",
     "@vitejs/plugin-vue-jsx": "1.3.1",
     "@vitest/coverage-c8": "^0.22.1",

+ 6 - 0
vite.config.ts

@@ -27,6 +27,8 @@ import AutoImport from "unplugin-auto-import/vite";
 
 import setting from "./src/settings";
 
+import legacyPlugin from '@vitejs/plugin-legacy'
+
 const prodMock = setting.openProdMock;
 // import packageJson from './package.json'
 // import { loadEnv } from 'vite'
@@ -71,6 +73,10 @@ export default ({ command, mode }: any) => {
       strictPort: true,
     },
     plugins: [
+      legacyPlugin({
+        targets:['chrome 51','chrome 52','chrome 53','chrome 54'],  // 需要兼容的目标列表,可以设置多个
+        additionalLegacyPolyfills:['regenerator-runtime/runtime'] // 面向IE11时需要此插件
+      }),
       vue({ reactivityTransform: true }),
       // Icons({
       //   autoInstall: true,