I'm using this repo to learn how to connect Cypress to a service created using `docker-compose`. ``` { 1 "baseUrl": "http://nginx:80", 2 "video": false 3 } ``` `cy.visit('/')` works fine within GitLab CI but when Cypress tries to access other routes such as `cy.visit('/register')` it gives me 404. ``` CypressError: `cy.visit()` failed trying to load: http://nginx:80/register The response we received from your web server was: > 404: Not Found ``` Can you expand on this ?
I'm using this repo to learn how to connect Cypress to a service created using
docker-compose.cy.visit('/')works fine within GitLab CI but when Cypress tries to access other routes such ascy.visit('/register')it gives me 404.Can you expand on this ?