mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "/vite",
|
|
build: {
|
|
outDir: '../server/public/vite'
|
|
}
|
|
});
|
|
|