change livereload server port to allow for HB and NC to be deployed both locally

This commit is contained in:
Víctor Losada Hernández 2024-12-08 23:44:35 +01:00
parent aba4a758c2
commit 51a284b064

View File

@ -5,7 +5,7 @@ const runLivereload = () => {
log.checkProduction('livereload');
const livereload = require('livereload');
log.watch('livereload running');
if(!lr_server) lr_server = livereload.createServer();
if(!lr_server) lr_server = livereload.createServer({ port: 35730 });
return lr_server.watch(`build`);
};