初始化 v0.1

This commit is contained in:
2026-02-02 08:54:11 +08:00
commit c0e2d47287
30 changed files with 4638 additions and 0 deletions

20
vite.config.ts Normal file
View File

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