html-bundle
Version:
A very simple bundler for HTML SFC
17 lines (16 loc) • 332 B
TypeScript
export type Config = {
build: string;
src: string;
port: number;
secure: boolean;
esbuild?: BuildOptions;
"html-minifier-terser"?: HTMLOptions;
critical?: Options;
deletePrev?: boolean;
isCritical?: boolean;
hmr?: boolean;
handler?: string;
host?: string;
key?: Buffer;
cert?: Buffer;
};