@nx/web
Version:
21 lines (20 loc) • 397 B
TypeScript
export interface Schema {
host?: string;
port?: number;
ssl?: boolean;
sslKey?: string;
sslCert?: string;
proxyUrl?: string;
buildTarget?: string;
parallel: boolean;
maxParallel?: number;
withDeps: boolean;
proxyOptions?: object;
watch?: boolean;
spa: boolean;
staticFilePath?: string;
cors?: boolean;
gzip?: boolean;
brotli?: boolean;
cacheSeconds?: number;
}