import { NextConfig } from 'next'; import createNextIntlPlugin from 'next-intl/plugin'; const withNextIntl = createNextIntlPlugin(); const nextConfig: NextConfig = { images: { localPatterns: [ { pathname: '/assets/images/**' } ], formats: ['image/avif', 'image/webp'], remotePatterns: [ { protocol: 'https', hostname: '**' } ] } }; export default withNextIntl(nextConfig);