2023-02-07 18:11:39 +00:00
|
|
|
/**
|
2023-02-07 19:09:51 +00:00
|
|
|
* @type {import('next').NextConfig}
|
2023-02-07 18:11:39 +00:00
|
|
|
*/
|
2023-02-07 19:09:51 +00:00
|
|
|
module.exports = {
|
2023-02-07 18:11:39 +00:00
|
|
|
reactStrictMode: true,
|
|
|
|
experimental: {
|
|
|
|
esmExternals: true,
|
|
|
|
},
|
2023-02-08 12:16:14 +00:00
|
|
|
transpilePackages: ["nuvo-react", "@saleor/apps-shared"],
|
2023-02-07 19:09:51 +00:00
|
|
|
};
|