import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: 'standalone', serverExternalPackages: ['puppeteer-core'], transpilePackages: ['next-font'], eslint: { ignoreDuringBuilds: true, }, typescript: { ignoreBuildErrors: true, } }; export default nextConfig;