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

19 lines
359 B
TypeScript

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",
},
},
});