File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ and pairing with smart people at Hashrocket.
9
9
10
10
For a steady stream of TILs, [ sign up for my newsletter] ( https://tinyletter.com/jbranchaud ) .
11
11
12
- _ 958 TILs and counting..._
12
+ _ 959 TILs and counting..._
13
13
14
14
---
15
15
@@ -938,6 +938,7 @@ _958 TILs and counting..._
938
938
### Vercel
939
939
940
940
- [ 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 )
941
942
942
943
### Vim
943
944
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments