( hash: string, config: ResolvedConfig, )
| 377 | } |
| 378 | |
| 379 | export function getPublicAssetFilename( |
| 380 | hash: string, |
| 381 | config: ResolvedConfig, |
| 382 | ): string | undefined { |
| 383 | return publicAssetUrlCache.get(config)?.get(hash) |
| 384 | } |
| 385 | |
| 386 | // inner map: hash -> url |
| 387 | export const publicAssetUrlCache: WeakMap< |