Vercel CLI とは
Vercel をコマンドラインから操作できるツールです。
Vercel CLI の認証情報ファイルはどこにあるか
~/.local/share/com.vercel.cli
中身
ファイルの一覧
$ pwd /home/takiya/.local/share/com.vercel.cli $ ls -la drwxr-xr-x foo foo 4.0 KB Wed Sep 28 11:47:16 2022 . drwxr-xr-x foo foo 4.0 KB Wed Sep 28 11:47:02 2022 .. .rw------- foo foo 203 B Wed Sep 28 11:47:16 2022 auth.json .rw-r--r-- foo foo 238 B Wed Sep 28 11:47:16 2022 config.json
ファイルの中身 (auth.json)
$ cat auth.json { "// Note": "This is your Vercel credentials file. DO NOT SHARE!", "// Docs": "https://vercel.com/docs/project-configuration#global-configuration/auth-json", "token": "abcdefg1234567890" }
ファイルの中身 (config.json)
$ cat config.json { "// Note": "This is your Vercel config file. For more information see the global configuration documentation.", "// Docs": "https://vercel.com/docs/project-configuration#global-configuration/config-json", "collectMetrics": true }