nonszy-space/next.config.mjs
2025-02-17 15:32:46 +07:00

15 lines
283 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'media.tenor.com',
pathname: '/1BCeG1aTiBAAAAAd/temptation-stairway-ena.gif'
}
]
}
};
export default nextConfig;