14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: 's2.googleusercontent.com',
|
|
},
|
|
],
|
|
},
|
|
serverExternalPackages: ['pdf-parse', 'crawlee', 'playwright'],
|
|
};
|
|
|
|
export default nextConfig;
|