handoff-app
Version:
Automated documentation toolchain for building client side documentation from figma
11 lines (10 loc) • 423 B
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';
export type { PluginFactory } from '../types';