Bin
2025-12-17 8c7632e4a973d7e005f6b070a7627205d869a344
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from 'cypress';
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
 
export default defineConfig({
  e2e: {
    ...nxE2EPreset(__dirname),
    // Please ensure you use `cy.origin()` when navigating between domains and remove this option.
    // See https://docs.cypress.io/app/references/migration-guide#Changes-to-cyorigin
    injectDocumentDomain: true
  }
});