From 6f7a45030c1f1b1bd6aa2733c8f3e6023ad72965 Mon Sep 17 00:00:00 2001
From: Thilo Wischmeyer <thwischm@gmail.com>
Date: Mon, 16 Nov 2020 21:22:44 +0100
Subject: [PATCH] Make vuetify use our icons again

---
 frontend/src/main.ts | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/frontend/src/main.ts b/frontend/src/main.ts
index 6f3bcb53..ec119eaa 100644
--- a/frontend/src/main.ts
+++ b/frontend/src/main.ts
@@ -23,10 +23,14 @@ Vue.config.productionTip = false
 
 const el = process.env.NODE_ENV === 'test' ? undefined : '#app'
 
-
+const vuetify = new Vuetify({
+ icons: {
+    iconfont: 'md',
+  },
+})
 
 export default new Vue({
-  vuetify: new Vuetify(),
+  vuetify,
   el: el,
   router: router,
   store,
-- 
GitLab