anycoder-eea07d51 / next.config.js
mohammadSaber26's picture
Upload next.config.js with huggingface_hub
f60dee9 verified
raw
history blame contribute delete
492 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000/api/v1/chat',
},
// برای استفاده از API های خارجی
async rewrites() {
return [
{
source: '/api/v1/chat',
destination: `${process.env.API_PROXY_URL || 'http://localhost:8000'}/api/v1/chat`,
},
];
},
};
module.exports = nextConfig;