Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.22 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.22 KB

Analyzer Bundles example

This example shows how to analyze the output bundles using @next/bundle-analyzer

Deploy your own

Deploy the example using ZEIT Now:

Deploy with ZEIT Now

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npm init next-app --example analyze-bundles analyze-bundles-app
# or
yarn create next-app --example analyze-bundles analyze-bundles-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/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

Analyze webpack output

To analyze your webpack output, invoke the following command:

npm run analyze
# or
yarn analyze