z-image-turbo-mcp / next.config.js
hooker-dev's picture
Upload next.config.js with huggingface_hub
5dc26f8 verified
raw
history blame contribute delete
393 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
images: {
domains: ['localhost'],
unoptimized: true,
},
async rewrites() {
return [
{
source: '/api/generate',
destination: process.env.BACKEND_URL || 'http://localhost:7861/api/generate',
},
];
},
};
module.exports = nextConfig;