mirror of
https://github.com/openstf/stf
synced 2025-10-05 02:29:26 +02:00
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
var serveStatic = require('serve-static')
|
|
|
|
var pathutil = require('../../../util/pathutil')
|
|
|
|
module.exports = function() {
|
|
return serveStatic(
|
|
pathutil.root('node_modules/stf-appstore-db/dist')
|
|
, {
|
|
maxAge: '30d'
|
|
}
|
|
)
|
|
}
|