Initial commit

This commit is contained in:
Sticks
2024-06-09 20:24:22 -05:00
committed by GitHub
commit f16a32b63e
27 changed files with 845 additions and 0 deletions

11
web/vite.config.ts Normal file
View File

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