mirror of
https://github.com/run-llama/auto_rfp.git
synced 2026-07-01 21:54:05 -04:00
c743c5eaa4
* Update README to use .env instead of .env.local * Replace all other refernces to .env.local --------- Co-authored-by: Roland Tritsch <roland@tritsch.email>
17 lines
692 B
JavaScript
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;
|