Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: fix typo on directory-structure/pages #7601

Merged
merged 1 commit into from Sep 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/content/2.guide/2.directory-structure/1.pages.md
Expand Up @@ -327,7 +327,7 @@ Learn more about [`<NuxtLink>`](/api/components/nuxt-link) usage.

## Router Options

It is possible to cutomize [vue-router options](https://router.vuejs.org/api/interfaces/routeroptions.html).
It is possible to customize [vue-router options](https://router.vuejs.org/api/interfaces/routeroptions.html).

### Using `app/router.options`

Expand All @@ -343,7 +343,7 @@ export default <RouterOptions> {

#### Custom Routes

:StabilityEdge{title="custom routes"}
:StabilityEdge{title="Custom Routes"}

You can optionally override routes using a function that accepts scanned routes and returns customized routes.
If returning `null` or `undefined`, Nuxt will fallback to the default routes. (useful to modify input array)
Expand All @@ -365,7 +365,7 @@ export default <RouterOptions> {

#### Custom History (advanced)

:StabilityEdge{title="custom history"}
:StabilityEdge{title="Custom History"}

You can optionally override history mode using a function that accepts base url and returns history mode.
If returning `null` or `undefined`, Nuxt will fallback to the default history.
Expand Down Expand Up @@ -402,7 +402,7 @@ export default defineNuxtConfig({

### Hash Mode (SPA)

:StabilityEdge{title="hash mode"}
:StabilityEdge{title="Hash Mode"}

You can enable hash history in SPA mode. In this mode, router uses a hash character (#) before the actual URL that is internally passed. When enabled, the **URL is never sent to the server** and **SSR is not supported**.

Expand Down