diff --git a/frontend/login.html b/frontend/login/index.html similarity index 100% rename from frontend/login.html rename to frontend/login/index.html diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 5c45e1d..7ff998b 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -8,6 +8,15 @@ export default defineConfig({ plugins: [ vue(), ], + build: { + rollupOptions:{ + input:{ + main: './index.html', + login: './login/index.html' + } + + } + }, resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url))