fix(e2e): keep localhost baseUrl; bind dev server to 0.0.0.0

This commit is contained in:
Kunal
2026-02-07 19:02:17 +00:00
parent f2f1ac5bb2
commit 388402b834
2 changed files with 3 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://127.0.0.1:3000",
baseUrl: "http://localhost:3000",
video: false,
screenshotOnRunFailure: true,
specPattern: "cypress/e2e/**/*.cy.{ts,tsx,js,jsx}",