Google login works

Hey! I actually solved it. I’ve been having a few issues with deployment but as of right now I’ve figured them all out. I believe the issue I was referring to was solved by removing some cors rerouting logic in my vercel.js.

I cleaned it up and just left this:

{
  "rewrites": [
    {
      "source": "/:path*",
      "destination": "/index.html"
    }
  ]
}

and it worked.

2 Likes