randomayzer/next.config.mjs

22 lines
404 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.userapi.com',
},
{
protocol: 'https',
hostname: '**.vk.com',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};
export default nextConfig;