Files
tvone/next.config.ts
T

17 lines
285 B
TypeScript
Raw 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-03-25 13:42:28 +01:00
};
export default nextConfig;