mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 19:21:08 +00:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
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,
|
|
},
|
|
});
|