Netlify
We provide a Netlify build plugin, netlify-plugin-inngest, that allows you to automatically sync any found apps whenever your site is deployed to Netlify.
Setup
- Install
netlify-plugin-inngest
as a dev dependency:
npm install --save-dev netlify-plugin-inngest
# or
yarn add --dev netlify-plugin-inngest
- Create or edit a
netlify.toml
file at the root of your project with the following:
[[plugins]]
package = "netlify-plugin-inngest"
Done! 🥳 Whenever your site is deployed, your app hosted at /api/inngest
will be synced.
Configuration
If you want to use a URL that isn't your "primary" Netlify domain, or your functions are served at a different path, provide either host
, path
, or both as inputs in the same file:
[[plugins]]
package = "netlify-plugin-inngest"
[plugins.inputs]
host = "https://my-specific-domain.com"
path = "/api/inngest"