Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

next-babel-minify

sergiodxa374MIT1.0.0

Change UglifyJS for Babel Minify to minify the code of your application.

nextjs, react, uglifyjs, babel, minify, babel-minify

readme

next-babel-minify

Change UglifyJS for Babel Minify to minify the code of your application.

Installation

npm install --save next-babel-minify

or

yarn add next-babel-minify

Usage

Create a next.config.js in your project

// next.config.js
const withBabelMinify = require('next-babel-minify')()
module.exports = withBabelMinify()

Optionally you can provide Babel Minify options:

// next.config.js
const withBabelMinify = require('next-babel-minify')({
  comments: false
})
module.exports = withBabelMinify()

Optionally you can add your custom Next.js configuration as parameter

// next.config.js
const withBabelMinify = require('next-babel-minify')()
module.exports = withBabelMinify({
  webpack(config, options) {
    return config
  }
})