vite-plugin-optimize-image
Version:
Optimize image plugin in vite
16 lines (13 loc) • 409 B
TypeScript
import { Plugin } from 'vite';
type OptimizeImagePluginOptions = {
distDir?: string;
};
interface OptimzieImagePlugin {
(): Plugin;
(args?: OptimizeImagePluginOptions): Plugin;
}
/**
* @description convert jpg|jpeg|png ext to webp.
*/
declare const optimizeImagePlugin: OptimzieImagePlugin;
export { type OptimizeImagePluginOptions, type OptimzieImagePlugin, optimizeImagePlugin as default };