refactor: update contact icons and next config remote patterns

This commit is contained in:
2026-04-15 22:55:33 +03:00
parent de89099b4f
commit f1292b5afb
2 changed files with 6 additions and 4 deletions

View File

@@ -1,19 +1,21 @@
import type { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'res.cloudinary.com',
pathname: '/**',
},
],
},