feat: init the structure ui of the app

This commit is contained in:
2026-08-15 10:13:16 +07:00
parent 0aa03f9c06
commit 570512549d
18 changed files with 1156 additions and 200 deletions
+2
View File
@@ -1,10 +1,12 @@
import { defineConfig } from 'vite'
import react, { reactCompilerPreset } from '@vitejs/plugin-react'
import babel from '@rolldown/plugin-babel'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
tailwindcss(),
react(),
babel({ presets: [reactCompilerPreset()] })
],