9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ['react-pdf', 'pdfjs-dist'],
|
|
serverExternalPackages: ['@napi-rs/canvas'],
|
|
};
|
|
|
|
export default nextConfig;
|