fraud-detection-url / next.config.js
kh03's picture
Upload 7 files
8d70efc verified
raw
history blame contribute delete
431 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
PRIMARY_API_URL: process.env.PRIMARY_API_URL || 'http://localhost:5001',
BACKUP_API_URL: process.env.BACKUP_API_URL || 'http://localhost:5001',
PRIMARY_TOKEN: process.env.PRIMARY_TOKEN || '',
BACKUP_TOKEN: process.env.BACKUP_TOKEN || '',
},
images: {
domains: ['localhost'],
},
}
module.exports = nextConfig