File tree 3 files changed +13
-2
lines changed
docs/components/index-page
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' nextra ' : patch
3
+ ---
4
+
5
+ ` _meta ` should return ` export const getStaticProps = () => ({ notFound: true }) `
6
+ for static exports, instead of page without contain
Original file line number Diff line number Diff line change @@ -64,7 +64,10 @@ export const IndexPage = () => (
64
64
Simple, powerful and flexible site generation framework{ ' ' }
65
65
< br className = "max-md:hidden" />
66
66
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
+ .
68
71
</ p >
69
72
< p className = "subtitle" >
70
73
< Link className = { styles . cta } href = "/docs" >
Original file line number Diff line number Diff line change @@ -89,7 +89,9 @@ export async function loader(
89
89
}
90
90
if ( isMetaFile ) {
91
91
// _meta.[jt]sx? used as a page.
92
- return 'export default () => null'
92
+ return `export default () => null
93
+
94
+ export const getStaticProps = () => ({ notFound: true })`
93
95
}
94
96
95
97
if ( mdxPath . includes ( '/pages/_app.mdx' ) ) {
You can’t perform that action at this time.
0 commit comments