23 lines
408 B
TypeScript
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;
|