From e65fb7aea21f3e18c34c739d5954671e28f81fda Mon Sep 17 00:00:00 2001 From: "Aamon P. Hoffmann" <aamon.hoffmann@student.uni-halle.de> Date: Fri, 20 Sep 2024 22:17:50 +0200 Subject: [PATCH] small changes --- chorechef_frontend/src/App.vue | 3 +-- chorechef_frontend/tsconfig.json | 19 +++++++++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/chorechef_frontend/src/App.vue b/chorechef_frontend/src/App.vue index 0c2c08d..9e15929 100644 --- a/chorechef_frontend/src/App.vue +++ b/chorechef_frontend/src/App.vue @@ -1,6 +1,5 @@ <script setup lang="ts"> import { RouterLink, RouterView } from "vue-router"; -import Dashboard from "./components/Dashboard.vue"; import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; import { faCog } from "@fortawesome/free-solid-svg-icons"; </script> @@ -8,7 +7,7 @@ import { faCog } from "@fortawesome/free-solid-svg-icons"; <template> <header> <div class="wrapper flex flex-row bg-neutral-200"> - <Dashboard /> + <h1 class="text-4xl font-bold p-2">ChoreChef</h1> <nav class="flex flex-row items-center grow gap-8 pl-8"> <RouterLink diff --git a/chorechef_frontend/tsconfig.json b/chorechef_frontend/tsconfig.json index 66b5e57..0228462 100644 --- a/chorechef_frontend/tsconfig.json +++ b/chorechef_frontend/tsconfig.json @@ -1,11 +1,14 @@ { - "files": [], - "references": [ - { - "path": "./tsconfig.node.json" - }, - { - "path": "./tsconfig.app.json" + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + } + ], + "compilerOptions": { + "strict": true } - ] } -- GitLab