From a60bf1528af72cc202465efda593afce7b7e8bfc Mon Sep 17 00:00:00 2001 From: LouisLam Date: Tue, 13 Jul 2021 18:34:09 +0800 Subject: [PATCH] drop ie support when build the frontend --- vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index 522f342c7..f93fb0269 100644 --- a/vite.config.js +++ b/vite.config.js @@ -7,7 +7,7 @@ export default defineConfig({ plugins: [ vue(), legacy({ - targets: ['ie >= 11'], + targets: ['ie > 11'], additionalLegacyPolyfills: ['regenerator-runtime/runtime'] }) ]