Files

21 lines
412 B
TypeScript
Raw Permalink Normal View History

2026-03-25 13:42:28 +01:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2026-03-25 15:02:03 +01:00
output: "standalone",
2026-03-25 14:32:19 +01:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
2026-04-10 21:12:03 +01:00
{
protocol: 'https',
hostname: 'i.ytimg.com', // NOVO: Adicionado para as thumbnails do YouTube
},
2026-03-25 14:32:19 +01:00
],
},
2026-03-25 13:42:28 +01:00
};
export default nextConfig;