@next/bundle-analyzer 16.1.0-canary.9 → 16.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6,7 +6,9 @@ module.exports =
|
|
|
6
6
|
}
|
|
7
7
|
if (process.env.TURBOPACK) {
|
|
8
8
|
console.warn(
|
|
9
|
-
'The Next Bundle Analyzer is not compatible with Turbopack builds
|
|
9
|
+
'The Next Bundle Analyzer is not compatible with Turbopack builds, no report will be generated.\n\n' +
|
|
10
|
+
'Consider trying the new Turbopack analyzer via `next experimental-analyze`.\n\n' +
|
|
11
|
+
'See https://nextjs.org/docs/app/guides/package-bundling for more information\n\n' +
|
|
10
12
|
'To run this analysis pass the `--webpack` flag to `next build`'
|
|
11
13
|
)
|
|
12
14
|
return nextConfig
|