Files
tiennm99 462e1fff6d chore: unify the labs under one GitHub Pages site
Each web demo builds with its base path under /ai-coding-workflow-labs/,
a single deploy workflow assembles them with a root index, and the
per-directory workflows from the standalone repos are removed.
2026-08-10 18:04:52 +07:00

14 lines
286 B
TypeScript

/// <reference types="vitest/config" />
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
base: "/ai-coding-workflow-labs/superpowers/",
plugins: [react()],
test: {
globals: true,
environment: "jsdom",
},
});