In the frontendConfig(), exactly what does this code do? -> ```windowHandler: (oI) => { return...
f
In the frontendConfig(), exactly what does this code do? ->
Copy code
windowHandler: (oI) => {
      return {
        ...oI,
        location: {
          ...oI.location,
          setHref: (href) => {
            Router.push(href);
          },
        },
      };
    },