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