(basePath: string)
| 33 | } |
| 34 | |
| 35 | function getImageOptimizerPath(basePath: string) { |
| 36 | return withBasePath( |
| 37 | basePath, |
| 38 | `/_next/image?url=${encodeURIComponent(withBasePath(basePath, '/image.png'))}&w=256&q=75` |
| 39 | ) |
| 40 | } |
| 41 | |
| 42 | function requestInternalDevScript( |
| 43 | appPort: string | number, |
no test coverage detected