Spaces:
Sleeping
Sleeping
Create next.config.js
Browse files- next.config.js +6 -0
next.config.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/** @type {import('next').NextConfig} */
|
| 2 |
+
const nextConfig = {
|
| 3 |
+
output: "standalone"
|
| 4 |
+
};
|
| 5 |
+
|
| 6 |
+
module.exports = nextConfig;
|