mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-22 20:16:57 +00:00
21 lines
398 B
TypeScript
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",
|
|
},
|
|
},
|
|
});
|