mirror of
https://github.com/eggent-ai/eggent.git
synced 2026-03-07 10:03:19 +00:00
22 lines
419 B
JavaScript
22 lines
419 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
webpack: (config) => {
|
|
config.resolve.alias.canvas = false;
|
|
return config;
|
|
},
|
|
serverExternalPackages: ["child_process", "pdfjs-dist"],
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "10mb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|