I can't get `blockHosts` working in Cypress 10.3.0...
# help
q
I can't get
blockHosts
working in Cypress 10.3.0 - am I handling something wrong?
Copy code
const { defineConfig } = require("cypress");

module.exports = defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
    baseUrl: 'http://X.myshopify.com',
  },
  env: {
    SHOPIFY_THEME_ID: 'X',
  },
  blockHosts: [
    '*.google-analytics.com',
    '*google-analytics.com',
    '*.ipgeolocation.io',
    '*ipgeolocation.io',
  ]
});
I've also tried to target the specific full URL (without protocol)