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: remove `check: true`
author
Daniel Roe
date
1 month ago
(Jun 9, 2026, 2:10 PM +0100)
commit
e230d692
e230d69215767cc42aab74beac0eba6cf6d0c469
parent
7e4d5765
7e4d57650e741359da84139a33a52dc6c54b456a
-2
1 changed file
Expand all
Collapse all
Unified
Split
modules
md-rewrite.ts
-2
modules/md-rewrite.ts
View file
Reviewed
···
24
24
src: '^/$',
25
25
dest: '/index.md',
26
26
has: [{ type: 'header', key: 'accept', value: '(.*)text/markdown(.*)' }],
27
27
-
check: true,
28
27
}, {
29
28
src: '^/(.+?)/?$',
30
29
dest: '/$1.md',
31
30
has: [{ type: 'header', key: 'accept', value: '(.*)text/markdown(.*)' }],
32
32
-
check: true,
33
31
})
34
32
35
33
await writeFile(vcJSON, JSON.stringify(vcConfig, null, 2), 'utf8')