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