mirror of
https://github.com/MinecraftConsole/MinecraftLegacy.git
synced 2026-07-16 04:11:30 +00:00
15 lines
239 B
TypeScript
15 lines
239 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve("src"),
|
|
},
|
|
},
|
|
});
|