QuantumShield / frontend /next.config.js
SantoshKumar1310's picture
Upload folder using huggingface_hub
49e53ae verified
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000',
},
}
module.exports = nextConfig