sw-jobs-frontend/next.config.mjs
ChrQR 8a4c867a8a
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m16s
added it jobbank
2024-06-11 13:28:09 +02:00

19 lines
340 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "thehub-io.imgix.net",
pathname: "/files/s3/*",
},
{
protocol: "https",
hostname: "www.it-jobbank.dk",
},
],
},
};
export default nextConfig;