Ress
Ress
NNuxt
Created by Ress on 1/27/2025 in #❓・help
Nuxt Content's 3 SQLite not working inside docker.
@kapa.ai how to use WASM SQLite ?
10 replies
NNuxt
Created by Ress on 1/26/2025 in #❓・help
How to create custom text content transformer for Nuxt content v3?
No, it not working..
hooks: {
'content:file:beforeParse': (ctx: FileBeforeParseHook) => {
// Check if the file is markdown
if (ctx.file.extension === '.md') {
// Replace custom syntax with HTML
ctx.content = ctx.content.replace(/::the{(.+?)}/g, '<strong>$1</strong>')
}
}
},
hooks: {
'content:file:beforeParse': (ctx: FileBeforeParseHook) => {
// Check if the file is markdown
if (ctx.file.extension === '.md') {
// Replace custom syntax with HTML
ctx.content = ctx.content.replace(/::the{(.+?)}/g, '<strong>$1</strong>')
}
}
},
7 replies
NNuxt
Created by Ress on 1/26/2025 in #❓・help
How to add blog post to sitemap.xml with Nuxt Content v3 ?
Yes, it's working with 'asSitemapCollection' in content.conig.ts Thanks!
7 replies