-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.ts
34 lines (32 loc) · 1.04 KB
/
_config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import lume from 'lume/mod.ts'
import blog from 'blog/mod.ts'
// import 'npm:prismjs/components/prism-markdown.js'
// import 'npm:prismjs/components/prism-yaml.js'
import 'npm:prismjs/components/prism-diff.js'
import 'npm:prismjs/components/prism-typescript.js'
import 'npm:prismjs/components/prism-json.js'
import 'npm:prismjs/components/prism-jsx.js'
export default lume({
location: new URL('https://blog.moeru.ai'),
src: './src',
})
.use(blog())
.copy(['.png'])
// remove /posts prefix
// https://lume.land/docs/core/processors/#preprocess
.preprocess(['.html'], (pages) => {
for (const page of pages) {
if (page.data.url.startsWith('/posts')) {
page.data.url = page.data.url.slice('/posts'.length)
}
}
})
// remove author page
// https://lume.land/docs/core/processors/#remove-pages-dynamically
.process(['.html'], (filteredPages, allPages) => {
for (const page of filteredPages) {
if (page.data.url.startsWith('/author')) {
allPages.splice(allPages.indexOf(page), 1)
}
}
})