feat: 模板配置

This commit is contained in:
2025-09-17 17:54:00 +08:00
parent d4bc69d504
commit bc2aff3a4b
18 changed files with 5089 additions and 183 deletions

View File

@@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import {defineConfig} from 'vite'
import react from '@vitejs/plugin-react-swc'
import tsconfigPaths from "vite-tsconfig-paths";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tsconfigPaths()],
})