DEV Community

Discussion on: Using webhooks to update a self-hosted Jekyll blog

Collapse
 
severo profile image
Sylvain Lesage

I think it's because of your configuration JSON format: instead of

[
  {...1}
]
[
  {...2}
]

you should have

[
  {...1},
  {...2}
]

You could use a linter like jsonlint.com/?json= or prettier.io/ to check your configuration file.

Collapse
 
elmor3no profile image
elMor3no

Thanks....

Thats solve the issue..