Attempt at Markdown page rendering

Syntax highlighting doesn't work yet.
This commit is contained in:
Riyyi
2025-03-29 18:25:38 +01:00
parent 95204ef335
commit d4c487cd92
10 changed files with 710 additions and 45 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineContentConfig, defineCollection } from '@nuxt/content'
// Lookup resolved from path: rootDir/content
// see: https://github.com/nuxt/content/issues/3161
export default defineContentConfig({
collections: {
content: defineCollection({
type: "page",
source: "**/*.md"
})
}
})