mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 05:09:43 +02:00
14 lines
330 B
JavaScript
14 lines
330 B
JavaScript
const BASE_URL = process.env.BASE_URL || 'http://localhost:1337';
|
|
|
|
const TIMEOUT = parseInt(process.env.TIMEOUT, 10) || 6000;
|
|
|
|
const PLAYWRIGHT = {
|
|
headless: process.env.PLAYWRIGHT_HEADLESS !== 'false',
|
|
slowMo: parseInt(process.env.PLAYWRIGHT_SLOW_MO, 10) || 1000,
|
|
};
|
|
|
|
export default {
|
|
BASE_URL,
|
|
TIMEOUT,
|
|
PLAYWRIGHT,
|
|
};
|