2024-03-03 15:22:03 +00:00
|
|
|
import path from "path";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
"@": path.resolve(__dirname, "./src"),
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-05-14 18:03:27 +00:00
|
|
|
base: "/replay-viewer/",
|
2024-03-03 15:22:03 +00:00
|
|
|
});
|