diff --git a/docs/01-app/02-guides/package-bundling.mdx b/docs/01-app/02-guides/package-bundling.mdx index 9967d03435214..71a5d7d326540 100644 --- a/docs/01-app/02-guides/package-bundling.mdx +++ b/docs/01-app/02-guides/package-bundling.mdx @@ -12,7 +12,7 @@ Bundling external packages can significantly improve the performance of your app ## Analyzing JavaScript bundles -[`@next/bundle-analyzer`](https://www.npmjs.com/package/@next/bundle-analyzer) is a plugin for Next.js that helps you manage the size of your application bundles. It generates a visual report of the size of each package and their dependencies. You can use the information to remove large dependencies, split, or [lazy-load](/docs/app/guides/lazy-loading) your code. +[`@next/bundle-analyzer`](https://www.npmjs.com/package/@next/bundle-analyzer) is a plugin for Next.js that helps you manage the size of your application bundles. It generates a visual report of the size of each package and their dependencies. You can use the information to remove large dependencies, split, or [lazy-load](/docs/app/guides/lazy-loading) your code. `@next/bundle-analyzer` doesn't yet support Turbopack builds. ### Installation