feat(fe2): removing prefetch of panoramic previews

This commit is contained in:
Kristaps Fabians Geikins 2024-04-01 15:17:06 +00:00
Родитель 9302d7e565
Коммит e60e9e40ba
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -19,4 +19,4 @@
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
}

Просмотреть файл

@ -57,9 +57,9 @@ export function usePreviewImageBlob(
...(directPreviewUrl?.length
? [{ rel: 'preload', as: <const>'image', href: directPreviewUrl }]
: []),
...(directPanoramicUrl?.length
? [{ rel: 'prefetch', as: <const>'image', href: directPanoramicUrl }]
: [])
// ...(directPanoramicUrl?.length
// ? [{ rel: 'prefetch', as: <const>'image', href: directPanoramicUrl }]
// : [])
]
})
}