mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
var express = require('express')
|
|
|
|
var pathutil = require('../../../util/pathutil')
|
|
|
|
module.exports = function() {
|
|
return express.static(
|
|
pathutil.root('node_modules/stf-browser-db/dist'))
|
|
}
|