import { defineConfig } from 'cypress' export default defineConfig({ e2e: { baseUrl: 'http://localhost:5173', supportFile: 'cypress/support/e2e.js', specPattern: 'cypress/e2e/**/*.cy.{js,ts}', viewportWidth: 1280, viewportHeight: 800, video: true, videoCompression: false, allowCypressEnv: false, }, })