Customizing Babel Config
Next.js includes the preset to your app, it includes everything needed to compile React applications and server-side code. But if you want to extend the default Babel configs, it’s also possible.
To start, you only need to define a .babelrc
file at the top of your app, if such file is found, we’re going to consider it the source of truth, therefore it needs to define what Next.js needs as well, which is the next/babel
preset.
You can to learn about the presets included by next/babel
.
To add presets/plugins without configuring them, you can do it this way:
To learn more about the available options for each config, visit their documentation site.