const {defineConfig} = require('cypress'); module.exports = defineConfig({ component: { devServer: { framework: 'create-react-app', bundler: 'webpack' } }, e2e: { baseUrl: 'http://localhost:4000', setupNodeEvents(on, config) { // implement node event listeners here } } });