Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 448 Bytes

File metadata and controls

28 lines (19 loc) · 448 Bytes

Running the NextExample app

You can:

  • start the app in development mode:
yarn dev
  • create and run a production build:
yarn build
yarn start
  • analyze the bundle with Next Bundle Analyzer. It will create a report and open it in your browser.
yarn build:analyze
  • build the project without minification. This is useful when you want to manually review the created bundle.
yarn build:disable-minification