Skip to content

Commit

Permalink
add server
Browse files Browse the repository at this point in the history
  • Loading branch information
zouyaoji committed Nov 21, 2018
1 parent 048dd43 commit 44b7fc1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions server.js
@@ -0,0 +1,6 @@
let express = require('express')
let app = express()
app.use(express.static('dist'))
app.listen(8080, function () {
console.log('服务启动成功: http://localhost:8080')
})

0 comments on commit 44b7fc1

Please sign in to comment.