This commit is contained in:
Cledwyn Lew
2025-11-25 13:23:17 +08:00
parent fd92202cba
commit b13ad3af16
31 changed files with 8687 additions and 93 deletions

14
vite.config.ts Normal file
View File

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