aboutsummaryrefslogtreecommitdiffhomepage
path: root/vite.config.ts
blob: b7010913924817b96f48cafc49404e7abd01b3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

// https://vite.dev/config/
export default defineConfig({
	base: "/PHPerKaigi2025-tokens/",
	build: {
		outDir: "docs",
	},
	plugins: [react()],
});