Skip to content
Snippets Groups Projects
cypress.config.ts 197 B
Newer Older
Ina Martini's avatar
Ina Martini committed
import { defineConfig } from 'cypress';

export default defineConfig({
  e2e: {
    baseUrl: 'http://localhost:4173/',
    video: false,
  },
  env: {
    apiUrl: 'http://localhost:8080/',
  },
});