import { defineConfig } from 'playwright/test' export default defineConfig({ testDir: './tests/e2e', timeout: 60_000, expect: { timeout: 10_000, }, use: { baseURL: 'http://localhost:5173', headless: true, trace: 'on-first-retry', }, })