Initial project creation

This commit is contained in:
2025-08-09 14:46:59 -07:00
commit 128800eda8
9 changed files with 1173 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite';
export default defineConfig({
root: '.',
build: {
outDir: 'dist',
},
server: {
port: 3000,
},
});