From 0e758d062475ebd2afc0be66021f76b64eac5309 Mon Sep 17 00:00:00 2001 From: wvffle Date: Sun, 26 Jun 2022 07:27:16 +0000 Subject: [PATCH] Fix vite.config.ts --- front/vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/vite.config.ts b/front/vite.config.ts index 9aae2f4c4..23d982944 100644 --- a/front/vite.config.ts +++ b/front/vite.config.ts @@ -58,8 +58,8 @@ export default defineConfig(() => ({ build: { rollupOptions: { input: { - main: path.resolve(__dirname, './index.html'), - embed: path.resolve(__dirname, './embed.html') + main: resolve(__dirname, './index.html'), + embed: resolve(__dirname, './embed.html') } } }