Initial commit: TodoList App with modern UI

This commit is contained in:
2025-12-18 13:38:01 +08:00
commit 2069517c4d
16 changed files with 3811 additions and 0 deletions

11
vite.config.ts Normal file
View File

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