UNPKG

@nx/rspack

Version:

The Nx Plugin for Rspack contains executors and generators that support building applications using Rspack.

14 lines (12 loc) 263 B
import type { Mode } from '@rspack/core'; export interface DevServerExecutorSchema { buildTarget: string; mode?: Mode; host?: string; port?: number; ssl?: boolean; sslKey?: string; sslCert?: string; proxyConfig?: string; publicHost?: string; }