1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 16:45:54 +02:00
This commit is contained in:
syuilo
2017-02-22 03:27:38 +09:00
parent c38a792238
commit 15b237875b
14 changed files with 20 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ app.use((req, res, next) => {
app.use(favicon(`${__dirname}/resources/favicon.ico`));
app.get('/manifest.json', (req, res) => res.sendFile(__dirname + '/resources/manifest.json'));
app.get('/apple-touch-icon.png', (req, res) => res.sendFile(__dirname + '/resources/apple-touch-icon.png'));
app.use('/_/resources', express.static(`${__dirname}/resources`, {
app.use('/resources', express.static(`${__dirname}/resources`, {
maxAge: ms('7 days')
}));