From 557bb998578fef35e6cd383b604524d2e9d3db1c Mon Sep 17 00:00:00 2001 From: Anca Emcken Date: Mon, 8 Mar 2021 11:27:02 +0100 Subject: [PATCH] Encode ..., escape [] --- docs/data/routes/docs/nextjs/troubleshooting/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/routes/docs/nextjs/troubleshooting/en.md b/docs/data/routes/docs/nextjs/troubleshooting/en.md index db8d19cefb..8f9c68ca90 100644 --- a/docs/data/routes/docs/nextjs/troubleshooting/en.md +++ b/docs/data/routes/docs/nextjs/troubleshooting/en.md @@ -77,7 +77,7 @@ The sample Next.js app's building and rendering depend on successfully fetching The `GraphiQL` interface at `/ui?sc_apikey=` is a visual browser for GraphQL data. It is a great tool for diagnosing these types of issues. -To support static generation functionality, the sample app exports a `getStaticPaths` function from the [[...path]] page, which needs to provide the list of pages to pre-render to Next.js. To check whether `getStaticPaths` can get the list of pages, try running the query that `getStaticPaths` uses directly in GraphiQL. +To support static generation functionality, the sample app exports a `getStaticPaths` function from the [\[...path\]] page, which needs to provide the list of pages to pre-render to Next.js. To check whether `getStaticPaths` can get the list of pages, try running the query that `getStaticPaths` uses directly in GraphiQL. ```graphql # YOUR_PATH should be the ID of your site root (home page) in lower-case, with dashes removed.