Disable notification in vercel

ajidk16

ajidk

Posted on February 8, 2023

Disable notification in vercel

Do you use Vercel? I am a user of Vercel. When I deploy, I receive a notification in my email every time. this causes a lot of spam in my email. I have found a solution to this problem,
You can create a file called vercel.json in your project:

{
    "github": {
        "silent": true
    }

    // if you use gitlab
    "gitlab": {
        "silent": true
    }
}

Enter fullscreen mode Exit fullscreen mode

Thank you for reading. I hope it was useful.

💖 💪 🙅 🚩
ajidk16
ajidk

Posted on February 8, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Disable notification in vercel
deploy Disable notification in vercel

February 8, 2023