Skip to content

Commit 2b560f7

Browse files
authored
Update the Vercel Guide
1 parent 713201e commit 2b560f7

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/guides/vercel.md

Lines changed: 2 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***, except for the A record, which you should leave untouched.
2222

2323
```json
2424
{
@@ -27,17 +27,11 @@ 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
```
3434

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-
```
40-
4135
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):
4236

4337
```json

0 commit comments

Comments
 (0)