Is it Firefox and next.js? Try adding this to your frontendConfig. You can search the thread for mor...
d
Is it Firefox and next.js? Try adding this to your frontendConfig. You can search the thread for more specifics:
Copy code
windowHandler: (oI) => {
            return {
                ...oI,
                location: {
                    ...oI.location,
                    setHref: (href) => {
                        Router.push(href)
                    }
                }
            }
        }
r
hey @davido_k - this is for nextjs, for any browser.
3 Views