mirror of
https://github.com/ARMSX2/Armsx2-Repo.git
synced 2026-08-24 16:52:58 -07:00
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
base: "/",
|
|
plugins: [react()],
|
|
build: {
|
|
assetsDir: "static",
|
|
},
|
|
});
|