@xcpcio/board-app
Version:
The ICPC Series Competition Leaderboard Visualization Engine
15 lines (13 loc) • 354 B
text/typescript
import { defineConfig } from "cypress";
import vitePreprocessor from "cypress-vite";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3333",
chromeWebSecurity: false,
specPattern: "cypress/e2e/**/*.spec.*",
supportFile: false,
setupNodeEvents(on) {
on("file:preprocessor", vitePreprocessor());
},
},
});