UNPKG

vite-plugin-zip-file

Version:
12 lines (11 loc) 304 B
import { PluginOption } from 'vite'; interface ViteZipConfig { enabled?: boolean; folderPath: string; outPath: string; zipName?: string; deleteFolder?: boolean; withoutMainFolder?: boolean; } export declare const viteZip: (customConfig: ViteZipConfig) => PluginOption; export {};