9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
outputFileTracingIgnores: ["**/test/**", "**/pdf-parse/test/**"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|