feat: add image optimization settings and clean up hover card component
All checks were successful
container-scan / Container Scan (pull_request) Successful in 2m25s
docker-build / docker (pull_request) Successful in 3m23s

This commit is contained in:
Maximilian Liebmann 2025-05-10 00:39:27 +02:00
parent 28278274e5
commit 08b5308e80
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;