ChrQR
8a4c867a8a
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m16s
19 lines
340 B
JavaScript
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;
|