This example shows how to analyze the output bundles using @next/bundle-analyzer
Deploy the example using Vercel:
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example analyze-bundles analyze-bundles-app
# or
yarn create next-app --example analyze-bundles analyze-bundles-app
Download the example:
curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/analyze-bundles
cd analyze-bundles
Install it
npm install
npm run dev
# or
yarn
yarn dev
To analyze your webpack output, invoke the following command:
npm run analyze
# or
yarn analyze