Files
2023-11-09 23:25:01 +01:00

14 lines
254 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'i.scdn.co',
},
],
},
}
module.exports = nextConfig