This commit is contained in:
SonPhung
2026-07-10 00:28:31 +07:00
commit f7fec6e510
35 changed files with 5476 additions and 0 deletions

13
vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
import path from "path"
export default defineConfig({
plugins: [tailwindcss(), react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})