Add LiveReload (#663)

This commit is contained in:
Amy Lam 2018-05-17 16:17:56 -07:00 committed by Joel Marcey
parent fed67dcee4
commit f9a09072e3
8 changed files with 279 additions and 9 deletions

View file

@ -64,7 +64,7 @@ function checkPort() {
const server = require('./server/server.js');
server(port);
const host = `http://localhost:${port}`;
console.log(`Starting Docusaurus server on ${host}`);
console.log('Docusaurus server started on port %d', port);
opn(host);
}
})