File size: 314 Bytes
0311dd0
 
 
 
43c3c8b
894ffe9
43c3c8b
 
0311dd0
 
 
1
2
3
4
5
6
7
8
9
10
11
/** @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