9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ["pdf-parse"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|