From d37c124c5a056cd06b08a5ac6c3b93d021055ecf Mon Sep 17 00:00:00 2001 From: xuyue <517252939@qq.com> Date: Tue, 23 Jan 2024 11:34:12 +0800 Subject: [PATCH] fix --- vite.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index a22762b..ca30b30 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,5 @@ import { defineConfig } from "vite" import vue from "@vitejs/plugin-vue" -import legacy from "@vitejs/plugin-legacy" export default defineConfig({ build: { @@ -17,5 +16,5 @@ export default defineConfig({ }, }, }, - plugins: [vue(), legacy({ targets: ["chrome 66", "not IE 11"] })], + plugins: [vue()], })