init project

This commit is contained in:
Michael Czechowski
2025-05-13 18:10:40 +02:00
commit c46d6efd6b
22 changed files with 3255 additions and 0 deletions

15
vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
export default defineConfig({
root: './src',
publicDir: './public',
build: {
outDir: './dist',
emptyOutDir: true,
sourcemap: true
},
server: {
port: 3000,
open: true
}
});