| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| output: 'standalone', | |
| env: { | |
| OPENAI_API_KEY: process.env.OPENAI_API_KEY, | |
| }, | |
| }; | |
| export default nextConfig; | |
| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| output: 'standalone', | |
| env: { | |
| OPENAI_API_KEY: process.env.OPENAI_API_KEY, | |
| }, | |
| }; | |
| export default nextConfig; | |