import { defineConfig } from '@playwright/test'; export default defineConfig({ testDir: './tests', timeout: 10000, use: { baseURL: 'http://localhost:5173', }, webServer: { command: 'npm run dev', url: 'http://localhost:5173', reuseExistingServer: true, }, });