Files
openclaw/extensions/qa-lab/web/vite.config.ts
Peter Steinberger 30337c8962 fix(qa-lab): include plural execution channels (#126140)
* fix(qa-lab): include plural execution channels

* chore(qa-lab): register browser error adapter

* fix(qa-lab): keep browser errors within boundaries

* fix(qa-lab): redact browser error credentials

* fix(sessions): drain sqlite writers during test cleanup

* fix(sessions): scope sqlite test handle cleanup

* test(codex): dedupe run attempt tools shard

* test(codex): converge run attempt tools shard
2026-08-19 01:17:22 -07:00

25 lines
680 B
TypeScript

// Qa Lab helper module supports vite behavior.
import path from "node:path";
import { defineConfig } from "vite";
export default defineConfig({
root: path.resolve(import.meta.dirname),
base: "./",
resolve: {
alias: {
"openclaw/plugin-sdk/error-runtime": path.resolve(
import.meta.dirname,
"../../../packages/normalization-core/src/browser-error-runtime.ts",
),
"openclaw/plugin-sdk/text-utility-runtime": path.resolve(
import.meta.dirname,
"../../../packages/normalization-core/src/utf16-slice.ts",
),
},
},
build: {
outDir: path.resolve(import.meta.dirname, "dist"),
emptyOutDir: true,
},
});