Spaces:
Runtime error
Runtime error
Upload next.config.js with huggingface_hub
Browse files- next.config.js +4 -0
next.config.js
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
const nextConfig = {
|
| 3 |
reactStrictMode: true,
|
| 4 |
output: 'standalone',
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
}
|
| 6 |
|
| 7 |
module.exports = nextConfig
|
|
|
|
| 2 |
const nextConfig = {
|
| 3 |
reactStrictMode: true,
|
| 4 |
output: 'standalone',
|
| 5 |
+
env: {
|
| 6 |
+
NEXTAUTH_URL: process.env.NEXTAUTH_URL || 'http://localhost:3000',
|
| 7 |
+
NEXTAUTH_SECRET: process.env.NEXTAUTH_SECRET || 'production-secret-replace-in-env',
|
| 8 |
+
},
|
| 9 |
}
|
| 10 |
|
| 11 |
module.exports = nextConfig
|