New Vite-based client project.

This commit is contained in:
2024-12-01 16:56:22 +00:00
parent bd93641af1
commit 62cca139af
18 changed files with 4636 additions and 430 deletions

10
client/vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3000
}
})