You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
397 B

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;
}