master
1export interface Config {
2 draftsDir: string;
3 postsDir: string;
4 draftStructure: 'category' | 'flat';
5 postStructure: 'category' | 'flat';
6}
7
8export const config: Config = {
9 draftsDir: 'src/content/drafts',
10 postsDir: 'src/content/posts',
11 draftStructure: 'flat',
12 postStructure: 'category',
13};