mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 08:22:53 +00:00
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
import { type PluginOption } from 'vite';
|
|
import { MkcertBaseOptions } from './mkcert';
|
|
export { BaseSource, type SourceInfo } from './mkcert/source';
|
|
export type MkcertPluginOptions = MkcertBaseOptions & {
|
|
/**
|
|
* The hosts that needs to generate the certificate.
|
|
*/
|
|
hosts?: string[];
|
|
};
|
|
declare const plugin: (options?: MkcertPluginOptions) => PluginOption;
|
|
export default plugin;
|