mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { defineContentConfig, defineCollection } from "@nuxt/content";
|
|
|
|
export default defineContentConfig({
|
|
collections: {
|
|
content: defineCollection({
|
|
type: "page",
|
|
source: "**/*.md",
|
|
}),
|
|
},
|
|
});
|