christian
f97685a0c1
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m22s
15 lines
305 B
JavaScript
15 lines
305 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'thehub-io.imgix.net',
|
|
pathname: '/files/s3/*',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|