Dateien nach "/" hochladen

This commit is contained in:
2025-08-08 20:27:11 +02:00
parent eaf8ed0c7e
commit db2d17f518
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
emptyOutDir: true
}
})