(
inlineConfig: InlineConfig | ResolvedConfig = {},
)
| 471 | } |
| 472 | |
| 473 | export function createServer( |
| 474 | inlineConfig: InlineConfig | ResolvedConfig = {}, |
| 475 | ): Promise<ViteDevServer> { |
| 476 | return _createServer(inlineConfig, { listen: true }) |
| 477 | } |
| 478 | |
| 479 | export async function _createServer( |
| 480 | inlineConfig: ResolvedConfig | InlineConfig | undefined = {}, |