Skip to content

Commit

Permalink
MWPW-161696 Increase smart redirect entry limit (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganthecoder authored Nov 6, 2024
1 parent fda89b2 commit f653390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/redirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function activateRedirects(data) {
return acc;
}, {}));
}
export async function fetchRedirects(path = '/smart-redirects.json') {
export async function fetchRedirects(path = '/smart-redirects.json?limit=100000') {
try {
const response = await fetch(path);
const redirects = await response.json();
Expand Down

0 comments on commit f653390

Please sign in to comment.