mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
var express = require('express')
|
|
|
|
var pathutil = require('../../../util/pathutil')
|
|
|
|
module.exports = function() {
|
|
return express.static(
|
|
pathutil.root('node_modules/stf-device-db/dist'))
|
|
}
|