MCPcopy
hub / github.com/vitejs/vite / isResolvedConfig

Function isResolvedConfig

packages/vite/src/node/config.ts:1386–1393  ·  view source on GitHub ↗
(
  inlineConfig: InlineConfig | ResolvedConfig,
)

Source from the content-addressed store, hash-verified

1384}
1385
1386export function isResolvedConfig(
1387 inlineConfig: InlineConfig | ResolvedConfig,
1388): inlineConfig is ResolvedConfig {
1389 return (
1390 SYMBOL_RESOLVED_CONFIG in inlineConfig &&
1391 inlineConfig[SYMBOL_RESOLVED_CONFIG]
1392 )
1393}
1394
1395export async function resolveConfig(
1396 inlineConfig: InlineConfig,

Callers 1

_createServerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected