transpilePackages

Next.js, yerel paketlerden (monorepos gibi) veya harici bağımlılıklardan (node_modules) bağımlılıkları otomatik olarak aktarabilir ve paketleyebilir. Bu, next-transpile-modules paketinin yerini alır.

next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
  transpilePackages: ['@acme/ui', 'lodash-es'],
}
 
module.exports = nextConfig

Version History

VersionChanges
v13.0.0transpilePackages added.