kopia lustrzana https://github.com/nolanlawson/pinafore
expose report.html and stats.json
rodzic
7ce9a39119
commit
cdd7469bd3
|
@ -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, () => {
|
||||
|
|
Ładowanie…
Reference in New Issue