QuizFlash / next.config.ts
Shih-hungg's picture
Fix type errors
c7d096e
raw
history blame contribute delete
191 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
env: {
OPENAI_API_KEY: process.env.OPENAI_API_KEY,
},
};
export default nextConfig;