When visiting a page that is not a provided static path, which should show the 404 page, the page crashes in chrome with the error that there were too many redirects.
E.g.
// for pages/discover/[tag].tsx
export const getStaticPaths: GetStaticPaths = () => ({
paths: [
{ params: { tag: 'foo' } }
],
fallback: false,
})
If I visit /discover/bar I would expect that I should see a 404 page, but it crashes saying there are too many redirects.