(opts: { debug?: boolean } = {})
| 8 | * @public |
| 9 | */ |
| 10 | export function getQwikLoaderScript(opts: { debug?: boolean } = {}) { |
| 11 | // default script selector behavior |
| 12 | return opts.debug ? QWIK_LOADER_DEFAULT_DEBUG : QWIK_LOADER_DEFAULT_MINIFIED; |
| 13 | } |
| 14 | |
| 15 | const QWIK_PREFETCH_MINIFIED: string = (globalThis as any).QWIK_PREFETCH_MINIFIED; |
| 16 | const QWIK_PREFETCH_DEBUG: string = (globalThis as any).QWIK_PREFETCH_DEBUG; |
no outgoing calls
no test coverage detected
searching dependent graphs…