feat: out dir correction

This commit is contained in:
2025-05-20 18:38:49 +02:00
parent d9c3223228
commit fdf99d82e5
2 changed files with 9 additions and 3 deletions

2
.gitignore vendored
View File

@ -28,3 +28,5 @@ go.work.sum
# key files
*.pem
dist/

View File

@ -1,7 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
build: {
outDir: "../dist",
emptyOutDir: true,
},
});