mirror of
https://github.com/imjasonh/uno
synced 2026-07-06 22:52:55 +00:00
11 lines
207 B
JavaScript
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",
|
|
},
|
|
});
|