Has anyone come across this error? Cannot GET /__c...
# component-testing
l
Has anyone come across this error? Cannot GET /__cypress/src/index.html I've had a read here: 1. https://docs.cypress.io/guides/component-testing/styling-components#Rules-for-Setting-Up-Your-Styles 2. https://github.com/cypress-io/cypress/discussions/22315 Nothing is working for me I'm using NextJS Config File:
Copy code
const { defineConfig } = require("cypress");
module.exports = defineConfig({
  e2e: {
    baseUrl: "http://localhost:3000",
    specPattern: "./cypress/integration/**/*.js",
  },
  component: {
    indexHtmlFile: "./cypress/support/component-index.html",
    devServer: {
      framework: "next",
      specPattern: "./cypress/components/**/*.js",
      bundler: "webpack",
    },
  },
  projectId: "7uticn",
});