import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir:'.', testMatch:'app.spec.mjs', timeout:30000, use:{baseURL:'http://127.0.0.1:4173'}, webServer:{command:'npx http-server public -p 4173 -c-1',port:4173,reuseExistingServer:true}, projects:[ {name:'desktop',use:{...devices['Desktop Chrome']}}, {name:'mobile-390',use:{viewport:{width:390,height:844},isMobile:true,hasTouch:true}} ] });