RangeError: Array size is not a small enough positive integer on iOS browsers after now deploy
[issue link]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)/
})
}
}
}