From c7ae02d853b0504bd2fac94b3112568e1df47e1d Mon Sep 17 00:00:00 2001 From: tobinio Date: Wed, 14 May 2025 09:19:35 +0200 Subject: [PATCH] set title to TaskLine --- nuxt.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index a8c0d89..bc3d733 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -5,6 +5,11 @@ export default defineNuxtConfig({ future: { compatibilityVersion: 4, }, + app: { + head: { + title: "TaskLine", + }, + }, ssr: process.env.TAURI_USED === "true" ? false : true, compatibilityDate: "2024-11-01", devtools: { enabled: true }, -- 2.51.2