Skip to content

Commit

Permalink
fix: disable fallbacks for [locale]
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgoff committed Sep 26, 2024
1 parent c14bf12 commit 74cdbf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/[locale]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function getStaticPaths() {
paths: languages.map((language) => {
return { params: { locale: language } };
}),
fallback: "blocking",
fallback: false,
};
}

Expand Down

0 comments on commit 74cdbf7

Please sign in to comment.