/ playwright.config.ts
playwright.config.ts
 1  import type { PlaywrightTestConfig } from '@playwright/test';
 2  
 3  const config: PlaywrightTestConfig = {
 4  	webServer: {
 5  		command: 'npm run build && npm run preview',
 6  		port: 4173
 7  	}
 8  };
 9  
10  export default config;