alpha
Login
or
Join now
danielroe.dev
/
roe.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[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
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: don't prerender all pages
author
Daniel Roe
date
1 month ago
(Jun 9, 2026, 9:39 AM +0100)
commit
47ad2665
47ad26652d196d835cb68507998eb5917c2dd7de
parent
cf9caeb8
cf9caeb899f40fedf7a839998be803648b85c3d7
+1
-2
1 changed file
Expand all
Collapse all
Unified
Split
nuxt.config.ts
+1
-2
nuxt.config.ts
View file
Reviewed
···
4
4
import { extendViteConfig } from 'nuxt/kit'
5
5
import { isTest } from 'std-env'
6
6
import type { HmrOptions } from 'vite'
7
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
210
-
routes: [...Object.keys(pageMeta), '/rss.xml', '/llms.txt', '/llms-full.txt'],
209
209
+
routes: ['/rss.xml', '/llms.txt', '/llms-full.txt'],
211
210
},
212
211
hooks: {
213
212
'prerender:generate' (route) {