Skip to content

Commit a3b67ae

Browse files
author
Dimitri POSTOLOV
authoredOct 11, 2023
[v3] _meta should return export const getStaticProps = () => ({ notFound: true }) for static exports, instead of page without contain (#2429)
1 parent 315ca82 commit a3b67ae

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed
 

‎.changeset/fast-falcons-report.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'nextra': patch
3+
---
4+
5+
`_meta` should return `export const getStaticProps = () => ({ notFound: true })`
6+
for static exports, instead of page without contain

‎docs/components/index-page/index.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ export const IndexPage = () => (
6464
Simple, powerful and flexible site generation framework{' '}
6565
<br className="max-md:hidden" />
6666
with everything you love from{' '}
67-
<Link href="https://nextjs.org">Next.js</Link>.
67+
<Link href="https://nextjs.org" className="text-current">
68+
Next.js
69+
</Link>
70+
.
6871
</p>
6972
<p className="subtitle">
7073
<Link className={styles.cta} href="/docs">

‎packages/nextra/src/server/loader.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ export async function loader(
8989
}
9090
if (isMetaFile) {
9191
// _meta.[jt]sx? used as a page.
92-
return 'export default () => null'
92+
return `export default () => null
93+
94+
export const getStaticProps = () => ({ notFound: true })`
9395
}
9496

9597
if (mdxPath.includes('/pages/_app.mdx')) {

0 commit comments

Comments
 (0)