1
0
Fork 0
mirror of https://github.com/imjasonh/uno synced 2026-07-06 22:52:55 +00:00
uno/vite.config.js
Jason Hall 6e3646b532 Add base path for GitHub Pages deployment
Signed-off-by: Jason Hall <jason@chainguard.dev>
2026-01-16 19:25:13 -05:00

11 lines
207 B
JavaScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
root: "web",
base: "/uno/",
build: {
outDir: "../dist",
},
});