Spaces:
Running
Running
File size: 183 Bytes
c7d34c1 | 1 2 3 4 5 6 | #!/usr/bin/env node
import { rm } from 'node:fs/promises';
import path from 'node:path';
await rm(path.join(process.cwd(), '.next', 'standalone'), { recursive: true, force: true });
|