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

Commit

Permalink
docs: fix typo on directory-structure/pages
Browse files Browse the repository at this point in the history
  • Loading branch information
doganalper committed Sep 16, 2022
1 parent 1ebdef7 commit 64f3748
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/content/2.guide/2.directory-structure/1.pages.md
Original file line number Diff line number Diff line change
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

0 comments on commit 64f3748

Please sign in to comment.