anycoder-4b8d5e0c / next.config.js
00Boobs00's picture
Upload next.config.js with huggingface_hub
894ffe9 verified
raw
history blame contribute delete
314 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
env: {
NEXTAUTH_URL: process.env.NEXTAUTH_URL || 'http://localhost:7860',
NEXTAUTH_SECRET: process.env.NEXTAUTH_SECRET || 'production-secret-replace-in-env',
},
}
module.exports = nextConfig