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 = nextConfigVersion History
| Version | Changes |
|---|---|
v13.0.0 | transpilePackages added. |