set up frontend (vite+three.js) and 3d code

This commit is contained in:
Evan Scamehorn
2025-11-25 23:51:37 -06:00
parent 30d3aa69c7
commit b02fe71d06
5 changed files with 1130 additions and 0 deletions

8
vite.config.js Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: '/city-sim/',
build: {
outDir: 'dist'
}
})