Files
oh-my-opencode/web/scripts/prepare-build.mjs
T

8 lines
184 B
JavaScript
Raw Normal View History

import { rmSync } from "node:fs"
const buildCachePaths = [".next/cache/fetch-cache"]
for (const filePath of buildCachePaths) {
rmSync(filePath, { force: true, recursive: true })
}