mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
19 lines
359 B
TypeScript
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",
|
|
},
|
|
},
|
|
});
|