10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
esmExternals: true,
|
|
},
|
|
transpilePackages: ["nuvo-react"],
|
|
};
|