Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 362 Bytes

custom-babel-configuration.md

File metadata and controls

14 lines (11 loc) · 362 Bytes

Custom Babel Configuration

To customize your babel configuration, simply create a .babelrc with the desired configuration. Do not forget to add next/babel preset into your configuration.

{
  "presets": [
    "next/babel"
  ]
}

Please refer to this documentation for customizing babel configuration.