Create next.config.js
Browse files- next.config.js +11 -0
next.config.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
output: "standalone",
|
| 4 |
+
experimental: {
|
| 5 |
+
serverActions: {
|
| 6 |
+
allowedOrigins: ["*"]
|
| 7 |
+
}
|
| 8 |
+
}
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
module.exports = nextConfig
|