chest-disease / next.config.js
GitHub Actions Bot
Clean deploy to HF Space
5e1f929
Raw
History Blame Contribute Delete
251 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: [],
},
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000',
},
}
module.exports = nextConfig