mirror of
https://github.com/Drop-OSS/drop-api-autogen.git
synced 2026-01-30 20:55:17 +01:00
23 lines
454 B
TypeScript
23 lines
454 B
TypeScript
import { defineContentConfig, defineCollection } from "@nuxt/content";
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
docs: defineCollection({
|
|
type: "page",
|
|
source: {
|
|
include: "**/*.md",
|
|
prefix: "api",
|
|
cwd: "./docs",
|
|
},
|
|
}),
|
|
guides: defineCollection({
|
|
type: "page",
|
|
source: {
|
|
include: "**/*.md",
|
|
prefix: "guides",
|
|
cwd: "./guides",
|
|
},
|
|
}),
|
|
},
|
|
});
|