diff --git a/next.config.ts b/next.config.ts index 1f859bf..e7cccc1 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - // Il n'y a plus aucune configuration spécifique nécessaire ! - // Vous pouvez laisser cet objet vide. + experimental: { + outputFileTracingIgnores: ["**/test/**", "**/pdf-parse/test/**"], + }, }; -export default nextConfig; +module.exports = nextConfig;