expose report.html and stats.json

smoother-timeline-navigation
Nolan Lawson 2018-03-25 13:47:01 -07:00
rodzic 7ce9a39119
commit cdd7469bd3
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -1,7 +1,8 @@
const app = require('express')()
const express = require('express')
const compression = require('compression')
const sapper = require('sapper')
const serveStatic = require('serve-static')
const app = express()
const { PORT = 4002 } = process.env
@ -20,6 +21,9 @@ app.use(serveStatic('assets', {
}
}))
app.use('/report.html', express.static('.sapper/client/report.html'))
app.use('/stats.json', express.static('.sapper/client/stats.json'))
app.use(sapper())
app.listen(PORT, () => {