manifest.json 11.2 KB
Newer Older
L
Luis Alvarez D 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{
  "routes": [
    {
      "title": "Documentation",
      "heading": true,
      "routes": [
        { "title": "Getting Started", "path": "/docs/getting-started.md" },
        {
          "title": "Basic Features",
          "open": true,
          "routes": [
            {
              "title": "Pages",
              "path": "/docs/basic-features/pages.md"
            },
            {
17
              "title": "Data Fetching",
L
Luis Alvarez D 已提交
18 19 20 21 22 23
              "path": "/docs/basic-features/data-fetching.md"
            },
            {
              "title": "Built-in CSS Support",
              "path": "/docs/basic-features/built-in-css-support.md"
            },
S
Steven 已提交
24 25 26 27
            {
              "title": "Image Optimization",
              "path": "/docs/basic-features/image-optimization.md"
            },
L
Luis Alvarez D 已提交
28 29 30 31
            {
              "title": "Static File Serving",
              "path": "/docs/basic-features/static-file-serving.md"
            },
32 33 34 35
            {
              "title": "Fast Refresh",
              "path": "/docs/basic-features/fast-refresh.md"
            },
L
Luis Alvarez D 已提交
36 37 38
            {
              "title": "TypeScript",
              "path": "/docs/basic-features/typescript.md"
39 40 41 42
            },
            {
              "title": "Environment Variables",
              "path": "/docs/basic-features/environment-variables.md"
43 44 45 46
            },
            {
              "title": "Supported Browsers and Features",
              "path": "/docs/basic-features/supported-browsers-features.md"
L
Luis Alvarez D 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
            }
          ]
        },
        {
          "title": "Routing",
          "routes": [
            {
              "title": "Introduction",
              "path": "/docs/routing/introduction.md"
            },
            {
              "title": "Dynamic Routes",
              "path": "/docs/routing/dynamic-routes.md"
            },
            {
              "title": "Imperatively",
              "path": "/docs/routing/imperatively.md"
            },
            {
              "title": "Shallow Routing",
              "path": "/docs/routing/shallow-routing.md"
            }
          ]
        },
        {
          "title": "API Routes",
          "routes": [
            {
              "title": "Introduction",
              "path": "/docs/api-routes/introduction.md"
            },
            {
              "title": "Dynamic API Routes",
              "path": "/docs/api-routes/dynamic-api-routes.md"
            },
            {
              "title": "API Middlewares",
              "path": "/docs/api-routes/api-middlewares.md"
            },
            {
              "title": "Response Helpers",
              "path": "/docs/api-routes/response-helpers.md"
            }
          ]
        },
        {
          "title": "Deployment",
          "path": "/docs/deployment.md"
        },
96 97 98 99
        {
          "title": "Authentication",
          "path": "/docs/authentication.md"
        },
L
Luis Alvarez D 已提交
100 101 102
        {
          "title": "Advanced Features",
          "routes": [
S
Shu Uesugi 已提交
103 104 105 106
            {
              "title": "Preview Mode",
              "path": "/docs/advanced-features/preview-mode.md"
            },
L
Luis Alvarez D 已提交
107 108 109 110 111 112 113 114 115 116 117 118
            {
              "title": "Dynamic Import",
              "path": "/docs/advanced-features/dynamic-import.md"
            },
            {
              "title": "Automatic Static Optimization",
              "path": "/docs/advanced-features/automatic-static-optimization.md"
            },
            {
              "title": "Static HTML Export",
              "path": "/docs/advanced-features/static-html-export.md"
            },
119 120 121 122
            {
              "title": "Absolute Imports and Module Path Aliases",
              "path": "/docs/advanced-features/module-path-aliases.md"
            },
L
Luis Alvarez D 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
            {
              "title": "AMP Support",
              "routes": [
                {
                  "title": "Introduction",
                  "path": "/docs/advanced-features/amp-support/introduction.md"
                },
                {
                  "title": "Adding AMP Components",
                  "path": "/docs/advanced-features/amp-support/adding-amp-components.md"
                },
                {
                  "title": "AMP Validation",
                  "path": "/docs/advanced-features/amp-support/amp-validation.md"
                },
                {
                  "title": "AMP in Static HTML export",
                  "path": "/docs/advanced-features/amp-support/amp-in-static-html-export.md"
                },
                {
                  "title": "TypeScript",
                  "path": "/docs/advanced-features/amp-support/typescript.md"
                }
              ]
            },
            {
              "title": "Customizing Babel Config",
              "path": "/docs/advanced-features/customizing-babel-config.md"
            },
152 153 154 155
            {
              "title": "Customizing PostCSS Config",
              "path": "/docs/advanced-features/customizing-postcss-config.md"
            },
L
Luis Alvarez D 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
            {
              "title": "Custom Server",
              "path": "/docs/advanced-features/custom-server.md"
            },
            {
              "title": "Custom `App`",
              "path": "/docs/advanced-features/custom-app.md"
            },
            {
              "title": "Custom `Document`",
              "path": "/docs/advanced-features/custom-document.md"
            },
            {
              "title": "Custom Error Page",
              "path": "/docs/advanced-features/custom-error-page.md"
            },
            {
              "title": "`src` Directory",
              "path": "/docs/advanced-features/src-directory.md"
175 176 177 178
            },
            {
              "title": "Multi Zones",
              "path": "/docs/advanced-features/multi-zones.md"
179 180 181 182
            },
            {
              "title": "Measuring performance",
              "path": "/docs/advanced-features/measuring-performance.md"
S
Shu Uesugi 已提交
183 184 185 186
            },
            {
              "title": "Debugging",
              "path": "/docs/advanced-features/debugging.md"
187
            },
188 189 190 191
            {
              "title": "Source Maps",
              "path": "/docs/advanced-features/source-maps.md"
            },
192 193 194
            {
              "title": "Codemods",
              "path": "/docs/advanced-features/codemods.md"
195 196 197 198
            },
            {
              "title": "Internationalized Routing",
              "path": "/docs/advanced-features/i18n-routing.md"
L
Luis Alvarez D 已提交
199 200 201
            }
          ]
        },
202 203 204 205
        {
          "title": "Upgrade Guide",
          "path": "/docs/upgrading.md"
        },
206 207 208
        {
          "title": "Migrating to Next.js",
          "routes": [
209 210 211 212
            {
              "title": "Incrementally Adopting Next.js",
              "path": "/docs/migrating/incremental-adoption.md"
            },
213 214 215 216 217 218
            {
              "title": "Migrating from Gatsby",
              "path": "/docs/migrating/from-gatsby.md"
            }
          ]
        },
L
Luis Alvarez D 已提交
219 220 221 222 223 224 225 226
        { "title": "FAQ", "path": "/docs/faq.md" }
      ]
    },
    {
      "title": "API Reference",
      "heading": true,
      "routes": [
        { "title": "CLI", "path": "/docs/api-reference/cli.md" },
227 228 229 230
        {
          "title": "Create Next App",
          "path": "/docs/api-reference/create-next-app.md"
        },
L
Luis Alvarez D 已提交
231 232 233 234 235 236 237 238
        {
          "title": "next/router",
          "path": "/docs/api-reference/next/router.md"
        },
        {
          "title": "next/link",
          "path": "/docs/api-reference/next/link.md"
        },
S
Steven 已提交
239 240 241 242
        {
          "title": "next/image",
          "path": "/docs/api-reference/next/image.md"
        },
L
Luis Alvarez D 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
        {
          "title": "next/head",
          "path": "/docs/api-reference/next/head.md"
        },
        {
          "title": "next/amp",
          "path": "/docs/api-reference/next/amp.md"
        },
        {
          "title": "Data Fetching",
          "routes": [
            {
              "title": "getInitialProps",
              "path": "/docs/api-reference/data-fetching/getInitialProps.md"
            }
          ]
        },
        {
          "title": "next.config.js",
          "routes": [
            {
              "title": "Introduction",
              "path": "/docs/api-reference/next.config.js/introduction.md"
            },
            {
              "title": "Environment Variables",
              "path": "/docs/api-reference/next.config.js/environment-variables.md"
            },
271 272 273 274
            {
              "title": "Base Path",
              "path": "/docs/api-reference/next.config.js/basepath.md"
            },
275 276 277 278 279 280 281 282 283 284 285 286
            {
              "title": "Rewrites",
              "path": "/docs/api-reference/next.config.js/rewrites.md"
            },
            {
              "title": "Redirects",
              "path": "/docs/api-reference/next.config.js/redirects.md"
            },
            {
              "title": "Custom Headers",
              "path": "/docs/api-reference/next.config.js/headers.md"
            },
L
Luis Alvarez D 已提交
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
            {
              "title": "Custom Page Extensions",
              "path": "/docs/api-reference/next.config.js/custom-page-extensions.md"
            },
            {
              "title": "CDN Support with Asset Prefix",
              "path": "/docs/api-reference/next.config.js/cdn-support-with-asset-prefix.md"
            },
            {
              "title": "Build Target",
              "path": "/docs/api-reference/next.config.js/build-target.md"
            },
            {
              "title": "Custom Webpack Config",
              "path": "/docs/api-reference/next.config.js/custom-webpack-config.md"
            },
            {
              "title": "Compression",
              "path": "/docs/api-reference/next.config.js/compression.md"
            },
            {
              "title": "Runtime Configuration",
              "path": "/docs/api-reference/next.config.js/runtime-configuration.md"
            },
            {
              "title": "Disabling x-powered-by",
              "path": "/docs/api-reference/next.config.js/disabling-x-powered-by.md"
            },
            {
              "title": "Disabling ETag Generation",
              "path": "/docs/api-reference/next.config.js/disabling-etag-generation.md"
            },
            {
              "title": "Setting a custom build directory",
              "path": "/docs/api-reference/next.config.js/setting-a-custom-build-directory.md"
            },
            {
              "title": "Configuring the Build ID",
              "path": "/docs/api-reference/next.config.js/configuring-the-build-id.md"
            },
            {
              "title": "Configuring onDemandEntries",
              "path": "/docs/api-reference/next.config.js/configuring-onDemandEntries.md"
            },
            {
              "title": "Ignoring TypeScript Errors",
              "path": "/docs/api-reference/next.config.js/ignoring-typescript-errors.md"
            },
            {
              "title": "exportPathMap",
              "path": "/docs/api-reference/next.config.js/exportPathMap.md"
338
            },
J
Jan Potoms 已提交
339 340 341 342
            {
              "title": "Trailing Slash",
              "path": "/docs/api-reference/next.config.js/trailing-slash.md"
            },
343 344 345
            {
              "title": "React Strict Mode",
              "path": "/docs/api-reference/next.config.js/react-strict-mode.md"
L
Luis Alvarez D 已提交
346 347 348 349 350 351 352
            }
          ]
        }
      ]
    }
  ]
}