10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
env: {
|
|
OPENAI_API_KEY: process.env.OPENAI_API_KEY,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|