From 945ad4bad14eb6e9e3e89524f16a715e2b941cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Phetphoumy?= Date: Mon, 6 May 2024 16:54:12 +0000 Subject: [PATCH] Added prerender route --- nuxt.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 61bf668..6434e9f 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -9,5 +9,10 @@ export default defineNuxtConfig({ theme: 'catppuccin-mocha', langs: ['python', 'bash'] } + }, + routeRules: { + '/articles/**': { prerender: true }, + '/': { prerender: true }, + '/contact': { prerender: true }, } })