mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-19 05:29:59 -06:00
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
const send = require('send')
|
|
const staticPkg = require('@packages/static')
|
|
|
|
module.exports = {
|
|
handle (req, res) {
|
|
const pathToFile = staticPkg.getPathToDist(req.params[0])
|
|
|
|
return send(req, pathToFile)
|
|
.pipe(res)
|
|
},
|
|
}
|