( nativeWebAssetsDir: string | null = getNativeWebAssetsDir(), )
| 411 | } |
| 412 | |
| 413 | export function resolveServerWebAssetsDir( |
| 414 | nativeWebAssetsDir: string | null = getNativeWebAssetsDir(), |
| 415 | ): string { |
| 416 | return nativeWebAssetsDir ?? join(getHostPackageRoot(), WEB_ASSETS_DIR); |
| 417 | } |
| 418 | |
| 419 | interface FormatReadyBannerOptions { |
| 420 | /** Persistent bearer token to print; omitted when unresolvable. */ |
no test coverage detected