elmeg-demo/frontend/next.config.ts
fullsizemalt 2ac8719359
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
chore: Launch polish (SEO, Config)
2025-12-24 18:21:12 -08:00

23 lines
408 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'elgoose.net',
},
{
protocol: 'https',
hostname: 'i.ytimg.com',
},
{
protocol: 'https',
hostname: 'yt3.ggpht.com',
},
],
},
};
export default nextConfig;