Files
auto_rfp/next.config.js
T
Roland Tritsch c743c5eaa4 Update README to use .env instead of .env.local
* Update README to use .env instead of .env.local

* Replace all other refernces to .env.local

---------

Co-authored-by: Roland Tritsch <roland@tritsch.email>
2025-12-19 11:54:13 -06:00

17 lines
692 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Configure environment variables that will be available on both server and client side
env: {
// You will need to set LLAMACLOUD_API_KEY in your deployment environment
// or in a .env file that's not committed to version control
LLAMACLOUD_API_KEY: process.env.LLAMACLOUD_API_KEY,
// Internal API key for internal users
LLAMACLOUD_API_KEY_INTERNAL: process.env.LLAMACLOUD_API_KEY_INTERNAL,
// Internal email domain (defaults to @runllama.ai)
INTERNAL_EMAIL_DOMAIN: process.env.INTERNAL_EMAIL_DOMAIN,
},
// Other Next.js config options
reactStrictMode: true,
}
module.exports = nextConfig;