Files
tvone/next.config.ts
T
peter c4ffae44fe
continuous-integration/drone/push Build is failing
now sending cookies
2026-04-19 02:33:07 +01:00

29 lines
559 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
{
protocol: 'https',
hostname: 'i.ytimg.com', // NOVO: Adicionado para as thumbnails do YouTube
},
],
},
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:3001/:path*",
},
];
},
};
export default nextConfig;