fix: Use native img tags for admin pages

- Replace next/image with native img tags in admin bottles, splits, tastings
- Remove hardcoded Supabase hostname from next.config.mjs
- Native img works with any hostname without config changes on deploy
This commit is contained in:
2026-01-19 11:46:26 +01:00
parent 3c02d33531
commit 948c70c7f2
4 changed files with 11 additions and 29 deletions

View File

@@ -10,15 +10,6 @@ const nextConfig = {
bodySizeLimit: '10mb',
},
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'supaapi.cloud.fluffigewolke.de',
pathname: '/storage/v1/object/public/**',
},
],
},
};
// Wrap with Sentry only if DSN is configured