You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/lib/middleware/static.js

7 lines
165 B
JavaScript

var express = require('express')
var path = require('path')
var STATIC_PATH = path.resolve(__dirname, '../../static')
module.exports = express.static(STATIC_PATH)