next.config.mjs 267 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. output: 'standalone',
  4. images: {
  5. remotePatterns: [
  6. {
  7. hostname: 's2.googleusercontent.com',
  8. },
  9. ],
  10. },
  11. serverExternalPackages: ['pdf-parse'],
  12. };
  13. export default nextConfig;