Answers for "Pointing Subdomain To A Next.js Page On Vercel"

0

Pointing Subdomain To A Next.js Page On Vercel

{
  "rewrites": [
    {
      "source": "/:path*",
      "has": [
        {
          "type": "host",
          "value": "a.domain.com"
        }
      ],
      "destination": "/a/:path*"
    }
  ]
}
Posted by: Guest on May-09-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language