docs: fix typo (#25326)

This commit is contained in:
Hriteek Bista 2024-01-19 22:26:18 +05:45 committed by GitHub
parent 214451dcef
commit b47ff972fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,7 +72,7 @@ export default defineNuxtConfig({
'/api/*': { cache: { maxAge: 60 * 60 } }, '/api/*': { cache: { maxAge: 60 * 60 } },
// Redirection to avoid 404 // Redirection to avoid 404
'/old-page': { '/old-page': {
redirect: { to: { '/new-page', statusCode: 302 } redirect: { to: '/new-page', statusCode: 302 }
} }
// ... // ...
} }