fix(web reader): remove webp as it's not supported in Safari

This commit is contained in:
Gauthier Roebroeck 2020-01-06 10:11:50 +08:00
parent 7ac44e41d2
commit 6770107dc8

View file

@ -198,7 +198,7 @@ export default Vue.extend({
baseURL: process.env.VUE_APP_KOMGA_API_URL ? process.env.VUE_APP_KOMGA_API_URL : window.location.origin,
book: {} as BookDto,
pages: [] as PageDto[],
supportedMediaTypes: ['image/jpeg', 'image/png', 'image/webp', 'image/gif'],
supportedMediaTypes: ['image/jpeg', 'image/png', 'image/gif'],
convertTo: 'png',
currentPage: 1,
goToPage: 1,