mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 12:56:01 -06:00
30337c8962
* 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
25 lines
680 B
TypeScript
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,
|
|
},
|
|
});
|