/ next.config.js
next.config.js
 1  /** @type {import('next').NextConfig} */
 2  const nextConfig = {
 3    experimental: {
 4      serverComponentsExternalPackages: ['pdf-parse'],
 5    },
 6    webpack: (config) => {
 7      // Fix for @react-pdf/renderer in Next.js
 8      config.resolve.alias.canvas = false;
 9      return config;
10    },
11  };
12  
13  module.exports = nextConfig;