sw-jobs-frontend/next.config.mjs

19 lines
340 B
JavaScript
Raw Normal View History

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