Skip to content

Commit

Permalink
fix(ci): attempt 127.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwht committed Aug 25, 2024
1 parent 6a85d53 commit 520e9bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
projectId: 'eup7bh',
e2e: {
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:3000/',
baseUrl: 'http://127.0.0.1:3000/',
testIsolation: false,
setupNodeEvents(on, config) {
task(on, config);
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
cypress: true,
}),
],
server: { port: 3000 },
server: { host: '127.0.0.1', port: 3000 },
build: {
target: 'esnext',
rollupOptions: {
Expand Down

0 comments on commit 520e9bc

Please sign in to comment.