mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-11 17:50:01 -06:00
11 lines
212 B
CoffeeScript
11 lines
212 B
CoffeeScript
send = require("send")
|
|
staticPkg = require("@packages/static")
|
|
|
|
module.exports = {
|
|
handle: (req, res) ->
|
|
pathToFile = staticPkg.getPathToDist(req.params[0])
|
|
|
|
send(req, pathToFile)
|
|
.pipe(res)
|
|
}
|