(src: string)
| 220 | } |
| 221 | |
| 222 | function logOversizedImageWarning(src: string) { |
| 223 | console.warn( |
| 224 | formatRuntimeError( |
| 225 | RuntimeErrorCode.IMAGE_PERFORMANCE_WARNING, |
| 226 | `An image with src ${src} has intrinsic file dimensions much larger than its ` + |
| 227 | `rendered size. This can negatively impact application loading performance. ` + |
| 228 | `For more information about addressing or disabling this warning, see ` + |
| 229 | `${ERROR_DETAILS_PAGE_BASE_URL}/NG0913`, |
| 230 | ), |
| 231 | ); |
| 232 | } |
no test coverage detected
searching dependent graphs…