You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
563 B
21 lines
563 B
const path = require('path')
|
|
const express = require('express')
|
|
const compression = require('compression')
|
|
|
|
module.exports = createMetamascaraServer
|
|
|
|
|
|
function createMetamascaraServer () {
|
|
|
|
// setup server
|
|
const server = express()
|
|
server.use(compression())
|
|
|
|
// serve assets
|
|
server.use(express.static(path.join(__dirname, '/../ui/'), { setHeaders: (res) => res.set('X-Frame-Options', 'DENY') }))
|
|
server.use(express.static(path.join(__dirname, '/../../dist/mascara')))
|
|
server.use(express.static(path.join(__dirname, '/../proxy')))
|
|
|
|
return server
|
|
|
|
}
|
|
|