webpack-serve-certificate-creator
Version:
webpack plugin to generate SSL certificate for local development
10 lines (9 loc) • 487 B
TypeScript
import type { ServerCertificateCreatorOptions } from './types.js';
import type { Compiler, WebpackPluginInstance } from 'webpack';
export declare const PLUGIN_NAME = "webpack-serve-certificate-creator";
export declare class WebpackServeCertificateCreator implements WebpackPluginInstance {
private readonly options;
constructor(options?: Partial<ServerCertificateCreatorOptions>);
get defaultOptions(): ServerCertificateCreatorOptions;
apply(compiler: Compiler): void;
}