UNPKG

vue-icon-gallery

Version:

Vite plugin for Vue 3 that opens a local gallery to preview your SVG icons before using them in templates. Instantly browse, search, and view your icons directly from your dev server — no more guessing by file name.

9 lines (8 loc) 296 B
import { Server } from 'http'; export interface GalleryServerOptions { iconsPath: string | string[]; port: number; open: boolean; } export declare function startGalleryServer(options: GalleryServerOptions): Promise<Server>; export declare function stopGalleryServer(): Promise<void>;