starter
starter copied to clipboard
Getting server error
Hey! I'm alsways getting the a server error:
TypeError: Cannot read properties of undefined (reading 'includes')
I have used the example implementation (Next.js):
Apparently this line is to blame for the error:
static get platform() {
const platform = typeof navigator !== "undefined" ? navigator.platform : "";
return (0, _util.shadow)(this, "platform", {
isWin: platform.includes("Win"),
isMac: platform.includes("Mac")
});
}