From f94ab0ff7d7e031cdd8ae6e4981de18b462a1da6 Mon Sep 17 00:00:00 2001 From: MrDeerly <33393789+MrDeerly@users.noreply.github.com> Date: Mon, 23 Oct 2023 19:21:44 +0200 Subject: [PATCH] adjust config --- vite.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 4eb4a1b..f45b932 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,5 @@ import path from "path"; import { defineConfig } from "vite"; -import vue from "@vitejs/plugin-vue"; // https://vitejs.dev/config/ export default defineConfig({ @@ -21,5 +20,5 @@ export default defineConfig({ }, }, }, - plugins: [vue()], + plugins: [], });