aboutsummaryrefslogtreecommitdiff
path: root/next.config.ts
blob: 5dd36606df65d3bdf317ff60955b55f388a44da6 (plain)
1
2
3
4
5
6
7
8
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  serverExternalPackages: ["pdfkit"],
};

export default nextConfig;