初始版本-前端

This commit is contained in:
z66
2025-12-26 17:29:22 +08:00
parent b495bc1dca
commit e19873850c
77 changed files with 6977 additions and 294 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import path from 'path'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [
// The React and Tailwind plugins are both required for Make, even if
// Tailwind is not being actively used do not remove them
react(),
tailwindcss(),
],
resolve: {
alias: {
// Alias @ to the src directory
'@': path.resolve(__dirname, './src'),
},
},
})