From 2b560f7d9f1e79de7ca93f822ae2ca6d8d26e6e3 Mon Sep 17 00:00:00 2001 From: iostpa Date: Wed, 8 Oct 2025 17:03:36 +0300 Subject: [PATCH 1/2] Update the Vercel Guide --- src/guides/vercel.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/guides/vercel.md b/src/guides/vercel.md index 6cc85b86..9e922164 100644 --- a/src/guides/vercel.md +++ b/src/guides/vercel.md @@ -18,7 +18,7 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction 1. Navigate to your Vercel dashboard. Then, navigate to the "Domains" tab of your project's settings. Click "Add Domain" and enter the is-a.dev subdomain you want (e.g. `example.is-a.dev`). 2. Once you're past the "Configure Environment and Redirects" tab—if unsure, just click "Save"—then click "Continue manually". Copy the TXT verification value that you'll get; you'll need this in step 4. 3. [Fork](https://github.com/is-a-dev/register/fork) our repository and create a file **in the `/domains` folder** named `your-domain.json`. Replace `your-domain` with the name of the subdomain you chose earlier in the Vercel dashboard. -4. In this file, paste the following JSON and ***make sure to replace all the values properly***, except for the CNAME, which you should leave untouched. +4. In this file, paste the following JSON and ***make sure to replace all the values properly***, except for the A record, which you should leave untouched. ```json { @@ -27,17 +27,11 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction "email": "your-email-address@example.com" }, "records": { - "CNAME": "cname.vercel-dns.com" + "A": ["216.198.79.1"] } } ``` -> If you want to provide other records such as MX or TXT, remove the CNAME and use the following record instead: - -```json -"A": ["76.76.21.21"] -``` - 5. Create a second file named `_vercel.your-domain.json` (replace `your-domain` with your chosen subdomain) and add the following content (make sure to replace the TXT record value with your verification string): ```json From 59688319d7304dbd18a17205b32f3873ba4c0bb2 Mon Sep 17 00:00:00 2001 From: iostpa Date: Thu, 16 Oct 2025 15:00:06 +0300 Subject: [PATCH 2/2] Add a warning about the records --- src/guides/vercel.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/guides/vercel.md b/src/guides/vercel.md index 9e922164..5fdfb584 100644 --- a/src/guides/vercel.md +++ b/src/guides/vercel.md @@ -18,7 +18,7 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction 1. Navigate to your Vercel dashboard. Then, navigate to the "Domains" tab of your project's settings. Click "Add Domain" and enter the is-a.dev subdomain you want (e.g. `example.is-a.dev`). 2. Once you're past the "Configure Environment and Redirects" tab—if unsure, just click "Save"—then click "Continue manually". Copy the TXT verification value that you'll get; you'll need this in step 4. 3. [Fork](https://github.com/is-a-dev/register/fork) our repository and create a file **in the `/domains` folder** named `your-domain.json`. Replace `your-domain` with the name of the subdomain you chose earlier in the Vercel dashboard. -4. In this file, paste the following JSON and ***make sure to replace all the values properly***, except for the A record, which you should leave untouched. +4. In this file, paste the following JSON and ***make sure to replace all the values properly***. ```json { @@ -31,6 +31,9 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction } } ``` +!!! +These records could be different so please pay attention and check what records Vercel assigned you with. +!!! 5. Create a second file named `_vercel.your-domain.json` (replace `your-domain` with your chosen subdomain) and add the following content (make sure to replace the TXT record value with your verification string):