Hugo "data-no-instant" generating AMP error

Hi,
I am trying to build a site using an amp. When I run the AMP validation it throws up error for
"
script src="/livereload.js?port=1313&mindelay=10">

Is there a config parameter to stop this?
Thanks in advance

To avoid this you must run your hugo server without watch, i.e.

hugo server -w=false

But this validation error is less harmful than the watching/live-reload is useful, so I would just ignore it. It goes away when you deploy to your real server.

Thanks it works