mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-13 00:18:22 +00:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
/// <reference types="vitest/config" />
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
base: "/try-superpowers/",
|
|
plugins: [react()],
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
|
|
},
|
|
});
|