Function
injectEnvironmentInContext
(
context: Context,
environment: Environment,
)
Source from the content-addressed store, hash-verified
| 1499 | } |
| 1500 | |
| 1501 | function injectEnvironmentInContext<Context extends MinimalPluginContext>( |
| 1502 | context: Context, |
| 1503 | environment: Environment, |
| 1504 | ) { |
| 1505 | context.meta.viteVersion ??= VERSION |
| 1506 | context.environment ??= environment |
| 1507 | return context |
| 1508 | } |
| 1509 | |
| 1510 | function injectSsrFlag<T extends Record<string, any>>( |
| 1511 | options: T | undefined, |
Tested by
no test coverage detected