import { defineConfig } from '@playwright/test' export default defineConfig({ testDir: './tests', timeout: 120_000, retries: 0, workers: 1, use: { baseURL: process.env.E2E_BASE_URL ?? 'http://127.0.0.1:8080' } })