We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b533b commit a528c8dCopy full SHA for a528c8d
next.config.js
@@ -1,5 +1,9 @@
1
/** @type {import('next').NextConfig} */
2
-module.exports = {
+const nextConfig = {
3
+ output: "standalone",
4
+ experimental: {
5
+ esmExternals: "loose",
6
+ },
7
reactStrictMode: true,
8
images: {
9
domains: ["assets.vercel.com", "https://res.cloudinary.com/"],
@@ -8,3 +12,5 @@ module.exports = {
12
BASE_URL: process.env.BASE_URL,
13
},
10
14
};
15
+
16
+module.exports = nextConfig;
0 commit comments