Skip to content

Commit e1b425a

Browse files
committed
🧹 chore(ci): add nolebase
1 parent 17106b3 commit e1b425a

File tree

6 files changed

+455
-11
lines changed

6 files changed

+455
-11
lines changed

.github/workflows/deploy-to-pages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
env:
2020
NODE_ENV: production
2121
GITHUB_TOKEN: ${{ secrets.SALTYAOM_GITHUB_TOKEN }}
22+
NODE_OPTIONS: --max-old-space-size=8192
2223
- name: Deploy
2324
uses: cloudflare/wrangler-action@v3
2425
with:

docs/.vitepress/config.ts

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,39 @@ export default defineConfig({
4444
},
4545
plugins: [
4646
tailwindcss() as any,
47-
llmstxt(),
47+
process.env.NODE_ENV === 'production' ? llmstxt() : [],
4848
GitChangelog({
49-
repoURL: () => 'https://github.com/elysiajs/documentation'
49+
repoURL: () => 'https://github.com/elysiajs/documentation',
50+
mapAuthors: [
51+
{
52+
mapByEmailAliases: ['[email protected]'],
53+
avatar: '/blog/authors/aris.webp',
54+
links: [
55+
{
56+
type: 'GitHub',
57+
link: 'https://github.com/SaltyAom'
58+
}
59+
]
60+
},
61+
{
62+
mapByNameAliases: ['bogeychan'],
63+
links: [
64+
{
65+
type: 'GitHub',
66+
link: 'http://github.com/bogeychan'
67+
}
68+
]
69+
},
70+
{
71+
mapByNameAliases: ['Fecony'],
72+
links: [
73+
{
74+
type: 'GitHub',
75+
link: 'https://github.com/fecony'
76+
}
77+
]
78+
}
79+
]
5080
}),
5181
GitChangelogMarkdownSection()
5282
]

0 commit comments

Comments
 (0)