( input: PreloaderOptions | undefined )
| 230 | }; |
| 231 | |
| 232 | function normalizePreLoaderOptions( |
| 233 | input: PreloaderOptions | undefined |
| 234 | ): Required<PreloaderOptions> { |
| 235 | return { ...PreLoaderOptionsDefault, ...input }; |
| 236 | } |
| 237 | |
| 238 | const PreLoaderOptionsDefault: Required<PreloaderOptions> = { |
| 239 | ssrPreloads: 7, |
no outgoing calls
no test coverage detected
searching dependent graphs…