diff --git a/next.config.js b/next.config.js index fa13553..066257b 100644 --- a/next.config.js +++ b/next.config.js @@ -4,5 +4,15 @@ module.exports = { i18n, reactStrictMode: true, // Required by Next i18n with API routes, otherwise API routes 404 when fetching without trailing slash - trailingSlash: true + trailingSlash: true, + images: { + dangerouslyAllowSVG: true, + remotePatterns: [ + { + protocol: 'https', + hostname: 'img.shields.io', + port: '', + }, + ], + }, }