docs: remove edge banners for rc.10

This commit is contained in:
Pooya Parsa 2022-09-16 20:34:40 +02:00
parent 5bc654495a
commit f0a2d622b2

View File

@ -343,8 +343,6 @@ export default <RouterOptions> {
#### 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 <RouterOptions> {
#### 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]