memory-lora-gemma4 / app /next.config.mjs
El-Mouden Moncif
Fix hypernetwork input collapse; add serving app + H100 deploy kit
f17edea
Raw
History Blame Contribute Delete
351 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
// The /v1/* route handlers stream from the local inference server; disable
// response buffering by keeping them as dynamic route handlers (default).
experimental: {
// Allow long-running pipeline spawns from server actions / route handlers.
},
};
export default nextConfig;