Skip to content

Commit

Permalink
Fix redirects path
Browse files Browse the repository at this point in the history
  • Loading branch information
KianNH committed Aug 14, 2024
1 parent 5387ae4 commit be33303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/validate-redirects.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { readFile } from 'fs/promises';

async function main( ){
const redirects = await readFile('content/_redirects', { encoding: 'utf-8' });
const redirects = await readFile('public/_redirects', { encoding: 'utf-8' });

let numInfiniteRedirects = 0;
let numUrlsWithFragment = 0;
Expand Down

0 comments on commit be33303

Please sign in to comment.