diff --git a/cypress.config.cjs b/cypress.config.cjs index facca90..daaf057 100644 --- a/cypress.config.cjs +++ b/cypress.config.cjs @@ -1,7 +1,7 @@ -import { defineConfig } from "cypress"; +const { defineConfig } = require("cypress"); -export default defineConfig({ +module.exports = defineConfig({ e2e: { - baseUrl: "http://localhost:3000", + baseUrl: "http://localhost:1234", }, });