feat: add image optimization settings and clean up hover card component

This commit is contained in:
Maximilian Liebmann 2025-05-10 00:39:27 +02:00 committed by Dominik
parent 811587d9d4
commit 669ad20a09
3 changed files with 24 additions and 15 deletions

View file

@ -2,6 +2,16 @@ import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'img1.wikia.nocookie.net',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;