nonszy-space/next.config.mjs
2025-02-18 22:28:11 +07:00

17 lines
345 B
JavaScript

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