firecrawl/examples/roastmywebsite/next.config.mjs

12 lines
203 B
JavaScript
Raw Permalink Normal View History

2024-06-03 11:40:19 +08:00
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
G1: process.env.G1,
G2: process.env.G2,
G3: process.env.G3,
G4: process.env.G4,
},
};
export default nextConfig;