fix(ui): allow thetvdb images for unmatched series (#1105)

When a series has no equivalent in TheTVDB used by Sonarr, a popup is displayed to select the series
on TheTVDB. The images in this popup come from artworks.thetvdb.com, which was not an authorized
domain for Next.js images.

fix #1075
This commit is contained in:
Gauthier
2024-11-16 15:33:26 +01:00
committed by GitHub
parent fe5d016929
commit 9b151feb4f
2 changed files with 3 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ module.exports = {
remotePatterns: [
{ hostname: 'gravatar.com' },
{ hostname: 'image.tmdb.org' },
{ hostname: 'artworks.thetvdb.com' },
],
},
webpack(config) {