10 lines
251 B
TypeScript
10 lines
251 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["pdf-parse"],
|
|
outputFileTracingIncludes: {
|
|
"/*": ["./node_modules/pdfjs-dist/legacy/build/pdf.worker.mjs"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|