aboutsummaryrefslogtreecommitdiff
path: root/playwright.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'playwright.config.js')
-rw-r--r--playwright.config.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/playwright.config.js b/playwright.config.js
new file mode 100644
index 0000000..448008a
--- /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;