import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './e2e', webServer: { command: 'npm run dev', port: 3000, reuseExistingServer: !process.env.CI, timeout: 120000, }, use: { baseURL: 'http://localhost:3000', }, });