Add system notifications to your Gatsby development builds
npm i gatsby-plugin-notify
Add the plugin to your gatsby-config.js
module.exports = {
plugins: [
'gatsby-plugin-notify'
]
}
You will receive a native notification when your development build breaks, and when it builds successfully again after a breakage.
The plugin accepts any options that can be passed to webpack-notifier
module.exports = {
plugins: [
{
resolve: 'gatsby-plugin-notify',
options: {
title: 'My Site'
}
]
}
Made with ❤️ by Tomorrow