(pathname: string | null)
| 63 | |
| 64 | const debug = setupDebug('next:router-server:main') |
| 65 | const isNextFont = (pathname: string | null) => |
| 66 | pathname && /\/media\/[^/]+\.(woff|woff2|eot|ttf|otf)$/.test(pathname) |
| 67 | |
| 68 | export type RenderServer = Pick< |
| 69 | typeof import('./render-server'), |
no test coverage detected
searching dependent graphs…