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()], })