import { defineConfig } from '@playwright/test' export default defineConfig({ testDir: './tests/e2e', timeout: 180_000, use: { baseURL: 'http://localhost:4173', headless: true, viewport: { width: 1440, height: 900 }, }, webServer: { command: 'npm run preview', url: 'http://localhost:4173', reuseExistingServer: true, timeout: 30_000, }, })