sw-jobs-frontend/next.config.mjs

15 lines
305 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 = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'thehub-io.imgix.net',
pathname: '/files/s3/*',
},
],
},
};
2024-06-07 14:02:52 +00:00
export default nextConfig;