mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-01 10:53:35 +00:00
13 lines
301 B
TypeScript
13 lines
301 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: "./",
|
|
build: {
|
|
outDir: path.resolve(import.meta.dirname, "dist"),
|
|
emptyOutDir: true,
|
|
},
|
|
});
|