2024-04-09 16:21:05 +05:30
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
2024-05-09 02:16:45 +08:00
|
|
|
output: 'standalone',
|
2024-04-09 16:21:05 +05:30
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
hostname: 's2.googleusercontent.com',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default nextConfig;
|