StarrySkyWorld commited on
Commit
693ea95
·
verified ·
1 Parent(s): 7c391db

Create next.config.js

Browse files
Files changed (1) hide show
  1. 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