Change listening port from 5000 to 5420 (#225)

This commit is contained in:
Steve Ruiz 2021-11-07 14:29:24 +00:00 committed by GitHub
parent 7c980ebb19
commit f30eb26003
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 7 deletions

View file

@ -26,13 +26,12 @@ async function main() {
},
watch: {
onRebuild(err) {
serve.update()
err ? error('❌ Failed') : log('✅ Updated')
},
},
},
{
port: 5000,
port: 5420,
root: './dist',
live: true,
}