next-markdown-blog
Version:
An npm package that allows Next.js users to create blogs using markdown
11 lines (10 loc) • 466 B
TypeScript
/**
* Generates a Tailwind config file that includes the necessary safelist for next-markdown-blog
* @param configPath - Path to the next-markdown-blog config file
* @param outputPath - Path where to write the generated Tailwind config (optional)
*/
export declare function generateTailwindConfigFile(configPath: string, outputPath?: string): string;
/**
* CLI function to generate Tailwind config
*/
export declare function generateTailwindConfigCLI(): void;