mirror of
https://litchi.icu/ngc2207/judge.git
synced 2025-05-18 23:07:39 +00:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
});
|