MeetUp/next.config.ts
Dominik Stahl cb793b9a38
All checks were successful
container-scan / Container Scan (pull_request) Successful in 2m33s
docker-build / docker (pull_request) Successful in 4m4s
tests / Tests (pull_request) Successful in 3m45s
fix: remove penguin source
2025-07-01 09:08:16 +02:00

17 lines
295 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'i.gifer.com',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;