10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// Served under /ping by the admin Go binary; base must match the nginx prefix.
|
|
export default defineConfig({
|
|
base: "/ping/",
|
|
plugins: [react()],
|
|
build: { outDir: "dist", emptyOutDir: true },
|
|
});
|