Files
website/next.config.ts
Steffen Illium 0444067c2d
Some checks failed
Next.js App CI / docker (push) Failing after 3m19s
refined design
2025-09-14 22:49:23 +02:00

17 lines
318 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* your other config options here */
output: 'standalone',
images: {
remotePatterns: [
{
protocol: "https",
hostname: "*.steffenillium.de",
},
],
},
};
export default nextConfig;