feat: update UI

This commit is contained in:
2026-09-03 21:49:25 +07:00
parent fd85fd894b
commit b55e7f97c9
32 changed files with 1616 additions and 958 deletions
+9 -2
View File
@@ -1,8 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import { fileURLToPath } from 'url'
import path from 'path'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
})
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})