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