mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
/** @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;
|