9 lines
307 B
JavaScript
9 lines
307 B
JavaScript
const express = require('express')
|
|
const router = require('express').Router()
|
|
const path = require('path')
|
|
|
|
router.use('/favicon.png', express.static(path.join(__dirname, '../', 'public', 'favicon.png')))
|
|
router.use('/static', express.static(path.join(__dirname, '../', 'public')))
|
|
|
|
module.exports = router
|