File size: 206 Bytes
6c12e37
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { PlaywrightTestConfig } from '@playwright/test';

const config: PlaywrightTestConfig = {
	webServer: {
		command: 'npm run build && npm run preview',
		port: 4173
	}
};

export default config;