blob: 32e1840405bef4c54157edb40cebea13d458a1e9 (
plain)
1
2
3
4
5
6
7
8
|
import * as path from 'path';
import * as express from 'express';
const app = express.Router();
app.get('/apple-touch-icon.png', (req, res) =>
res.sendFile(path.resolve(__dirname + '/../../resources/apple-touch-icon.png')));
module.exports = app;
|