Files
jelly_belly_wiki/next.config.mjs
2024-07-09 12:10:18 +04:00

15 lines
231 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: process.env.IMAGES_PROTOCOL,
hostname: process.env.IMAGES_DOMAIN,
},
],
},
};
export default nextConfig;