I have a project with a single toml that looks like this to point to my locally created build plugin. The plugin works fine when i run netlify build
but when I run netlify dev
it looks like the plugin never gets run at all (i get no log output). I’m assuming that netlify build plugins only run during the build + deploy process. any way i can make sure it runs locally too? I’m ingesting some data from an api that’s necessary to build the application.
[build.environment]
NODE_OPTIONS = "--max_old_space_size=4096"
[[redirects]]
from = "..."
to = "..."
status = 301
force = true
[[plugins]]
package = "./netlify-plugins/load-statsig-config-into-env"