12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: '**' }
|
|
]
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|