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