Files
tvone/next.config.ts
T
peter 102c0f35d0
continuous-integration/drone/push Build is passing
make it standalone
2026-03-25 15:02:03 +01:00

17 lines
285 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
pathname: "/**",
},
],
},
};
export default nextConfig;