We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d55e552 + 10a3928 commit cd9d4fbCopy full SHA for cd9d4fb
ntoml/netlify_toml.go
@@ -42,6 +42,11 @@ type BuildConfig struct {
42
Publish string `toml:"publish" json:"publish" yaml:"publish"`
43
Ignore string `toml:"ignore" json:"ignore" yaml:"ignore"`
44
Environment map[string]string `toml:"environment" json:"environment" yaml:"environment"`
45
+ Plugins []Plugin `toml:"plugins" json:"plugins" yaml:"plugins"`
46
+}
47
+
48
+type Plugin struct {
49
+ Package string `toml:"package" json:"package" yaml:"package"`
50
}
51
52
type DeployContext struct {
0 commit comments