UNPKG

@smartface/emulator-dispatcher

Version:

Handles Emulator Dispatcher Part of SmartfaceCloud

9 lines (7 loc) 318 B
const path = require("path"); const CONSTANTS = require("../../constants"); module.exports = function (express, app, options) { options = options || {}; console.log('Static File Serving :> ', path.join(CONSTANTS.WORKSPACE_PATH)); app.use('/files', express.static(path.join(CONSTANTS.WORKSPACE_PATH))); };