Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Buldauskas committed Aug 11, 2024
1 parent 721ccfc commit d5eb5c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = defineConfig({
e2e: {
video: true,
videoCompression: true,
baseUrl: 'http://localhost:8080',
baseUrl: 'http://127.0.0.1:8080',
setupNodeEvents(on, config) {
require('./cypress-node-events')(on);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"e2e": "NODE_OPTIONS=--dns-result-order=ipv4first c8 -o ./coverage-cypress -r=text -r=lcov node ./e2e-backend.mjs",
"e2e-dev": "nodemon --watch ext --watch src --exec ./e2e-backend.mjs",
"cy": "HTTP_PROXY=http://localhost:8000 cypress open --component",
"cy-ci": "NODE_OPTIONS=--dns-result-order=ipv4first HTTP_PROXY=http://127.0.0.1:8000 NO_PROXY=http://localhost:8080 cypress run --e2e",
"cy-ci": "NODE_OPTIONS=--dns-result-order=ipv4first HTTP_PROXY=http://127.0.0.1:8000 NO_PROXY=http://127.0.0.1:8080 cypress run --e2e",
"lint": "eslint src/**/*.mjs",
"format": "prettier --write ./src",
"shutdown": "curl localhost:9000/shutdown",
Expand Down
1 change: 1 addition & 0 deletions vite.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default defineConfig({
},
},
preview: {
host: 'http://127.0.0.1',
port: '8080',
},
});

0 comments on commit d5eb5c1

Please sign in to comment.