Skip to content

Commit 0673c54

Browse files
committed
try without a cache version
1 parent 39f9869 commit 0673c54

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/generate-md-exports.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ async function createWork() {
4545
const INPUT_DIR = path.join(root, '.next', 'server', 'app');
4646
const OUTPUT_DIR = path.join(root, 'public', 'md-exports');
4747

48-
const CACHE_VERSION = 2;
49-
const CACHE_DIR = path.join(root, '.next', 'cache', 'md-exports', `v${CACHE_VERSION}`);
48+
const CACHE_DIR = path.join(root, '.next', 'cache', 'md-exports');
5049
const noCache = !existsSync(CACHE_DIR);
5150
if (noCache) {
5251
await mkdir(CACHE_DIR, {recursive: true});

0 commit comments

Comments
 (0)