rudeshark.net/src/web/apple-touch-icon.ts

9 lines
250 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
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;