diff options
| author | Fuwn <[email protected]> | 2022-03-08 05:56:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-08 05:56:17 +0000 |
| commit | 1073d1ac02a36477cd3bd26798e35c26d5b5b01f (patch) | |
| tree | 194ecdc7f671521536a021ae63f0d717159e2d53 /playwright.config.js | |
| download | archived-frontend-next-1073d1ac02a36477cd3bd26798e35c26d5b5b01f.tar.xz archived-frontend-next-1073d1ac02a36477cd3bd26798e35c26d5b5b01f.zip | |
feat(frontend-next): 0.1.0 :star:
Diffstat (limited to 'playwright.config.js')
| -rw-r--r-- | playwright.config.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/playwright.config.js b/playwright.config.js new file mode 100644 index 0000000..8809fca --- /dev/null +++ b/playwright.config.js @@ -0,0 +1,9 @@ +/** @type {import('@playwright/test').PlaywrightTestConfig} */ +const config = { + webServer: { + command: "npm run build && npm run preview", + port: 3000, + }, +}; + +export default config; |