diff --git a/next.config.ts b/next.config.ts index 55d1aa5c..7de0dc61 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,5 +1,4 @@ import type { NextConfig } from "next"; -import { DATA } from "./app/resume"; const nextConfig: NextConfig = { /* your other config options here */ @@ -8,7 +7,7 @@ const nextConfig: NextConfig = { remotePatterns: [ { protocol: "https", - hostname: `*.${DATA.domain}`, + hostname: "*.steffenillium.de", }, ], },