mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
root: "src/client",
|
|
build: {
|
|
emptyOutDir: true,
|
|
outDir: "../../dist/client",
|
|
},
|
|
});
|