correct port number

This commit is contained in:
Martin Donnelly 2020-07-20 13:45:49 +01:00
parent 6ed24fb4e6
commit d1af9d1124

View File

@ -10,7 +10,7 @@ const assets = sirv('public', {
polka()
.use(compress, assets)
.listen(8130, err => {
.listen(8989, err => {
if (err) throw err;
console.log('> Running on localhost:8989');
});