sw-jobs-frontend/next.config.mjs

19 lines
340 B
JavaScript
Raw Normal View History

2024-06-07 16:02:52 +02:00
/** @type {import('next').NextConfig} */
2024-06-09 17:04:06 +02:00
const nextConfig = {
2024-06-11 13:28:09 +02:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "thehub-io.imgix.net",
pathname: "/files/s3/*",
},
{
protocol: "https",
hostname: "www.it-jobbank.dk",
},
],
},
2024-06-09 17:04:06 +02:00
};
2024-06-07 16:02:52 +02:00
export default nextConfig;