next.config.ts 295 B

123456789101112
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. serverExternalPackages: ["@resvg/resvg-js", "satori"],
  4. outputFileTracingIncludes: {
  5. "/api/image": [
  6. "./node_modules/geist/dist/fonts/geist-sans/Geist-Regular.ttf",
  7. ],
  8. },
  9. };
  10. export default nextConfig;