This commit is contained in:
2023-04-19 13:33:07 +00:00
parent b76d5599d8
commit af432a7bfb
89 changed files with 5801 additions and 3322 deletions

13
vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { resolve } from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@/": `${resolve(__dirname, "src")}/`,
},
},
});