16 lines
500 B
JavaScript
16 lines
500 B
JavaScript
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
export const config = {
|
|
geminiUrl: 'https://gemini.google.com/app',
|
|
cdpUrl: process.env.CDP_URL || 'http://127.0.0.1:9223',
|
|
timeout: 300000,
|
|
pollInterval: 2000,
|
|
outputDir: path.join(__dirname, 'output'),
|
|
screenshotDir: path.join(__dirname, 'output', 'screenshots'),
|
|
downloadDir: path.join(__dirname, 'output', 'originals'),
|
|
};
|