mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-08-15 19:21:50 +00:00
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.
14 lines
286 B
TypeScript
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",
|
|
|
|
},
|
|
});
|