Skip to content

Commit 10d8542

Browse files
authored
Merge pull request #104 from iostpa/main
Update the Vercel Guide to use the right records
2 parents 713201e + 5968831 commit 10d8542

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/guides/vercel.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
1818
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`).
1919
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.
2020
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.
21-
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.
21+
4. In this file, paste the following JSON and ***make sure to replace all the values properly***.
2222

2323
```json
2424
{
@@ -27,16 +27,13 @@ If you haven't made a Vercel site, make sure to make one. Follow the instruction
2727
"email": "[email protected]"
2828
},
2929
"records": {
30-
"CNAME": "cname.vercel-dns.com"
30+
"A": ["216.198.79.1"]
3131
}
3232
}
3333
```
34-
35-
> If you want to provide other records such as MX or TXT, remove the CNAME and use the following record instead:
36-
37-
```json
38-
"A": ["76.76.21.21"]
39-
```
34+
!!!
35+
These records could be different so please pay attention and check what records Vercel assigned you with.
36+
!!!
4037

4138
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):
4239

0 commit comments

Comments
 (0)