handoff-app
Version:
Automated documentation toolchain for building client side documentation from figma
14 lines (11 loc) • 461 B
text/typescript
/**
* Plugin exports for the transformers module
*
* This module provides a centralized interface for all Vite plugins
* used in the Handoff application. Each plugin is focused on a specific
* rendering approach and can be easily tested and maintained.
*/
export { handlebarsPreviewsPlugin } from './handlebars-previews';
export { ssrRenderPlugin } from './ssr-render';
// Re-export types for convenience
export type { PluginFactory } from '../types';