Files
website/next.config.ts
Steffen Illium 941e0a66f3
Some checks failed
Next.js App CI / docker (push) Failing after 59s
Metadata Canocical pages
2025-09-22 09:41:53 +02:00

18 lines
353 B
TypeScript

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