Migrate from Create React App to Vite; update docs and configs

This commit is contained in:
2026-01-07 19:52:25 +00:00
parent 641829d87a
commit 5e6fb273a7
6 changed files with 92 additions and 77 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: true,
},
preview: {
port: 3000,
host: true,
},
});