We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9beb934 + 26d0bf2 commit 6e7be35Copy full SHA for 6e7be35
docs/02-app/01-building-your-application/07-configuring/05-mdx.mdx
@@ -185,7 +185,7 @@ export async function getStaticProps() {
185
const res = await fetch('https:...')
186
const mdxText = await res.text()
187
const mdxSource = await serialize(mdxText)
188
- return { props: { source: mdxSource } }
+ return { props: { mdxSource } }
189
}
190
```
191
@@ -202,7 +202,7 @@ export async function getStaticProps() {
202
203
204
205
206
207
208
0 commit comments