handspew / next.config.mjs
Tina Tarighian
initial
065d164
raw
history blame
180 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
GEMINI_API_KEY: process.env.GEMINI_API_KEY,
},
};
export default nextConfig;