blob: 448008a2f18642889c06a50cd49c55f13c2b507e (
plain)
1
2
3
4
5
6
7
8
9
|
/** @type {import('@playwright/test').PlaywrightTestConfig} */
const config = {
webServer: {
command: 'npm run build && npm run preview',
port: 3000
}
};
export default config;
|