This commit is contained in:
Shivam Meena
2022-10-20 15:21:16 +05:30
parent ea4c699750
commit eab564d9b0
19 changed files with 2816 additions and 2 deletions

10
playwright.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
}
};
export default config;