Skip to content
Snippets Groups Projects
cypress.config.js 266 B
import { defineConfig } from 'cypress'

export default defineConfig({
  fixturesFolder: false,
  env: {
    backend_url: 'http://localhost:8080',
  },
  e2e: {
    setupNodeEvents(on, config) {},
    baseUrl: 'http://localhost:3000',
    supportFile: false,
  },
})