12 lines
390 B
TypeScript
12 lines
390 B
TypeScript
import { ComponentDefinition } from '@mintel/content-engine';
|
|
import path from 'path';
|
|
import { componentDefinitions } from './src/content-engine/definitions';
|
|
|
|
export const config = {
|
|
// Path to documentation files used as context for the AI
|
|
contextDir: path.join(process.cwd(), 'docs'),
|
|
|
|
// Custom UI components available for injection
|
|
components: componentDefinitions
|
|
};
|