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/src/middleware/static.js

5 lines
168 B
JavaScript

const path = require("path");
const express = require("express");
let STATIC_PATH = path.resolve(__dirname, "../static");
module.exports = express.static(STATIC_PATH);