ollama-server2 / next.config.js
bahadur3093's picture
feat: Add environment-based configuration and chat history support
8d8e945
Raw
History Blame Contribute Delete
209 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
OLLAMA_BASE_URL: process.env.OLLAMA_BASE_URL || 'http://localhost:11434',
},
}
module.exports = nextConfig