My project is working well on desktop browsers, but when I deploy through zeit's now, some of my click events are broken on all iOS browsers and I am able to see this error in the console (using browserstack). Everything works as it should on Android browsers. Any help/direction on this issue would be appreciated. I'm using "nuxtjs/apollo": "^3.0.4" and "apollo-client": "^2.2.5". Here is part of my nuxt.config.js:
build: {
maxChunkSize: 300000,
extend (config) {
if (process.client) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
}
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2549">#c2549</a>)</em></sub></div>