UNPKG

vite-plugin-cpanel-ssl

Version:

Automatically use your cPanel SSL certs and keys for the Vite dev server

10 lines (7 loc) 241 B
import { Plugin } from 'vite'; interface UserConfig { enable?: boolean | (() => boolean); domain: string; } declare function vitePluginCPanelSsl(userConfig?: Partial<UserConfig>): Plugin; export { vitePluginCPanelSsl as default };