diff --git a/docs/content/2.guide/2.directory-structure/1.pages.md b/docs/content/2.guide/2.directory-structure/1.pages.md index aa03aa0582f..538c38e3d26 100644 --- a/docs/content/2.guide/2.directory-structure/1.pages.md +++ b/docs/content/2.guide/2.directory-structure/1.pages.md @@ -343,8 +343,6 @@ export default { #### 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) @@ -365,8 +363,6 @@ export default { #### Custom History (advanced) -: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. @@ -402,8 +398,6 @@ export default defineNuxtConfig({ ### Hash Mode (SPA) -: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**. ```ts [nuxt.config.ts]