export default defineConfig()

in cypress.config.ts [5:17]


export default defineConfig({
  video: false,
  e2e: {
    setupNodeEvents(on) {
      on(
        "file:preprocessor",
        webpackPreprocessor({ typescript: "typescript" })
      );
    },
    specPattern: "cypress/tests/**/*.cy.{js,jsx,ts,tsx}",
    baseUrl: "http://localhost:7890",
  },
});