Files
website/next.config.ts
Steffen Illium 8d18a6c02e
All checks were successful
Next.js App CI / docker (push) Successful in 6m17s
app/resume not gettting resolved in next.config.ts
2025-09-22 09:45:21 +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;