Andrei  Belokopytov
Andrei Belokopytov

Reputation: 1081

ES Modules in a Next.js server.js

I checked a few examples from the Next.js repository

and noticed that examples use ES Modules in React components and CommonJS modules in the server.js file. I'd like to keep my code written in one style, is it possible to use only ES Modules in a Next.js project?

Upvotes: 3

Views: 5552

Answers (1)

Paul Hale
Paul Hale

Reputation: 305

This is sitting as a feature request in the Next.js backlog. https://github.com/zeit/next.js/issues/9607

Upvotes: 1

Related Questions