Back to home

How to Disable vercel deployment notification?

5 min read

Are you using Vercel to deploy your Next.js application? You might find it annoying when you receive so many email notifications from the deployment logs.

So here's a quick fix to disable all deployment notification.

Add new file called vercel.json in root of your project folder..

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

But one thing you need to remember is that you will need to manually check if the deployment failed or not on your Vercel dashboard.

Hope this help you.