项目文件夹

文件
2026-07-13 12:52:40 +08:00

7 行
225 B
JavaScript

import { rm } from "node:fs/promises"
import path from "node:path"
const viteCachePath = path.join(import.meta.dirname, "..", "webview-ui", "node_modules", ".vite")
await rm(viteCachePath, { recursive: true, force: true })