based on docs https://nextjs.org/docs/advanced-features/output-file-tracing#caveats have options unstable_includeFiles . But when i try to use it, it got error
`Invalid next.config.js options detected:
- The root value has an unexpected property, unstable_includeFiles, which is not in the list of allowed properties (amp, analyticsId, assetPrefix, basePath, cleanDistDir, compiler, compress, crossOrigin, devIndicators, distDir, env, eslint, excludeDefaultMomentLocales, experimental, exportPathMap, future, generateBuildId, generateEtags, headers, httpAgentOptions, i18n, images, onDemandEntries, optimizeFonts, output, outputFileTracing, pageExtensions, poweredByHeader, productionBrowserSourceMaps, publicRuntimeConfig, reactStrictMode, redirects, rewrites, sassOptions, serverRuntimeConfig, staticPageGenerationTimeout, swcMinify, trailingSlash, typescript, useFileSystemPublicRoutes, webpack).`
my next.config.js
{
output: 'standalone',
unstable_includeFiles: newrelicDeps.map(d => `node_modules/${d}/**/*.+(js|json)`),
};