[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt. roe.dev
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: don't prerender all pages

+1 -2
+1 -2
nuxt.config.ts
··· 4 4 import { extendViteConfig } from 'nuxt/kit' 5 5 import { isTest } from 'std-env' 6 6 import type { HmrOptions } from 'vite' 7 - import { pageMeta } from './modules/shared/page-meta' 8 7 9 8 export default defineNuxtConfig({ 10 9 modules: [ ··· 207 206 future: { nativeSWR: true }, 208 207 prerender: { 209 208 crawlLinks: true, 210 - routes: [...Object.keys(pageMeta), '/rss.xml', '/llms.txt', '/llms-full.txt'], 209 + routes: ['/rss.xml', '/llms.txt', '/llms-full.txt'], 211 210 }, 212 211 hooks: { 213 212 'prerender:generate' (route) {