Files
echecsfrance/cypress.config.ts
T
2023-06-27 22:43:55 +02:00

21 lines
398 B
TypeScript

// noinspection JSUnusedGlobalSymbols
import { defineConfig } from "cypress";
export default defineConfig({
projectId: "1nghs5",
e2e: {
baseUrl: "http://localhost:3000",
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
chromeWebSecurity: false,
component: {
devServer: {
framework: "next",
bundler: "webpack",
},
},
});