docs: remove extraneous brace

This commit is contained in:
Daniel Roe 2023-10-17 09:54:19 +01:00
parent ae630c599f
commit b9cb08cdac

View File

@ -68,7 +68,7 @@ export default defineNuxtConfig({
routeRules: {
'/': { prerender: true }, // Generated at build time for SEO purpose
'/api/*': { cache: { maxAge: 60 * 60 } } // Cached for 1 hour
'/old-page': { redirect: { to: { '/new-page', status: 302 } } // Redirection to avoid 404
'/old-page': { redirect: { to: '/new-page', status: 302 } } // Redirection to avoid 404
// ...
}
})