2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-14 16:12:25 +03:00

chore: replace npm with yarn in readme

fix: change default port for examples server to 3000
This commit is contained in:
pimlie
2019-02-11 00:15:47 +01:00
parent bfbd18189b
commit ec82e1ef9e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ fs.readdirSync(__dirname).forEach(file => {
app.use(express.static(__dirname))
const host = process.env.HOST || 'localhost'
const port = process.env.PORT || 8080
const port = process.env.PORT || 3000
module.exports = app.listen(port, host, () => {
console.log(`Server listening on http://${host}:${port}, Ctrl+C to stop`)