17 lines
345 B
JavaScript
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;
|