hey i figured my error out. my vite setup was usin...
# vue
p
hey i figured my error out. my vite setup was using https. and cypress searches on http for the dev server. this how the dev server für cypress is configured now
Copy code
ts
devServer: {
      viteConfig: {
        server: {
          https: false,
        },
      },
      framework: 'vue',
      bundler: 'vite',
    },