11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
/**
|
|
* TODO This should be solved using transpilePackages option
|
|
*/
|
|
const withTM = require("next-transpile-modules")(["nuvo-react"]);
|
|
|
|
module.exports = withTM({
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
esmExternals: true,
|
|
},
|
|
});
|