Skip to content

Commit a57a90c

Browse files
committed
Add Naming Of The Vercel Config File as a vercel til
1 parent 69e7dda commit a57a90c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and pairing with smart people at Hashrocket.
99

1010
For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud).
1111

12-
_958 TILs and counting..._
12+
_959 TILs and counting..._
1313

1414
---
1515

@@ -938,6 +938,7 @@ _958 TILs and counting..._
938938
### Vercel
939939

940940
- [Add Web Server Layer Redirects](vercel/add-web-server-layer-redirects.md)
941+
- [Naming Of The Vercel Config File](vercel/naming-of-the-vercel-config-file.md)
941942

942943
### Vim
943944

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Naming Of The Vercel Config File
2+
3+
[Vercel](https://vercel.com/), the company/service, used to be called Now. With
4+
any renaming comes some consistency challenges, even at the level of software.
5+
6+
The naming of the file for configuring your project used to be `now.json`. It
7+
is _now_ `vercel.json`.
8+
9+
For [backwards compatibility
10+
reasons](https://vercel.com/docs/platform/frequently-asked-questions#conflicting-configuration-files),
11+
you can still use either. You cannot and should not have both though.
12+
13+
If you're working with an existing project that uses `now.json`. It is fine to
14+
continue with that naming. It may eliminate some future confusion if you are to
15+
rename it to `vercel.json`. If you're starting a new project, I'd recommend
16+
using `vercel.json`. All the documentation you'll read uses this newer naming
17+
convention.

0 commit comments

Comments
 (0)