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