2024-04-09 16:21:05 +05:30
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
2025-03-20 09:46:50 +05:30
|
|
|
output: 'standalone',
|
2024-04-09 16:21:05 +05:30
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
hostname: 's2.googleusercontent.com',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-05-24 14:37:19 -06:00
|
|
|
serverExternalPackages: ['pdf-parse', 'crawlee', 'playwright'],
|
2024-04-09 16:21:05 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|