feat: 项目结构调整|新增依赖

This commit is contained in:
duanshuwen
2025-11-22 21:17:40 +08:00
parent 38b6a4b4a3
commit 6013c38fe7
40 changed files with 535 additions and 115 deletions

View File

@@ -1,4 +1,11 @@
import { defineConfig } from 'vite';
import { resolve } from "path";
// https://vitejs.dev/config
export default defineConfig({});
export default defineConfig({
resolve: {
alias: {
"@": resolve(__dirname, "./src")
},
},
});