17 lines
372 B
JavaScript
17 lines
372 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '*.googleusercontent.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'jtp-donutshop.s3.amazonaws.com',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|