import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests/e2e', timeout: 30000, retries: 0, use: { baseURL: 'http://localhost:8090', headless: true, }, });