@nx/webpack
Version:
18 lines (17 loc) • 349 B
TypeScript
export interface WebDevServerOptions {
host?: string;
port?: number;
publicHost?: string;
ssl?: boolean;
sslKey?: string;
sslCert?: string;
proxyConfig?: string;
buildTarget: string;
open?: boolean;
liveReload?: boolean;
hmr?: boolean;
watch?: boolean;
allowedHosts?: string;
memoryLimit?: number;
baseHref?: string;
}