(fileRef: FileFsRef)
| 136 | } |
| 137 | |
| 138 | export function getContentTypeFromFile(fileRef: FileFsRef): string | undefined { |
| 139 | const ext = path.extname(fileRef.fsPath).slice(1); |
| 140 | return CONTENT_TYPE_MAP[ext]; |
| 141 | } |
| 142 | |
| 143 | export function getSourceFileRefOfStaticMetadata( |
| 144 | routeKey: string, |