From 7346ded459d285e97e2bc94cfb5b5ea81e8e9145 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 5 Jul 2020 21:19:45 +0200 Subject: [PATCH] Add app shortcuts when using vikunja as pwa --- vue.config.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/vue.config.js b/vue.config.js index 09c1e3450..4e9c993de 100644 --- a/vue.config.js +++ b/vue.config.js @@ -32,6 +32,32 @@ module.exports = { "type": "image/png" } ], + shortcuts: [ + { + name: 'Overview', + url: '/', + }, + { + name: 'Namespaces And Lists Overview', + short_name: 'Namespaces & Lists', + url: '/namespaces', + }, + { + name: 'Tasks Next Week', + short_name: 'Next Week', + url: '/tasks/by/week', + }, + { + name: 'Tasks Next Month', + short_name: 'Next Month', + url: '/tasks/by/month', + }, + { + name: 'Teams Overview', + short_name: 'Teams', + url: '/teams', + } + ] }, } } \ No newline at end of file