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.
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
const express = require('express')
|
|
const appConfig = express()
|
|
appConfig.use(express.json())
|
|
appConfig.use(express.static('html'))
|
|
appConfig.use(express.static(__dirname + '/node_modules/@mdi/font'))
|
|
|
|
/** CONFIG Routes */
|
|
|
|
appConfig.listen(3080, '0.0.0.0' || config.host || '127.0.0.1')
|