From ff3674aea94316b4854b025a41f56563e17e8235 Mon Sep 17 00:00:00 2001 From: axolotle Date: Sat, 24 Feb 2024 01:55:39 +0100 Subject: [PATCH] theming: add link to possible custom css stylesheet --- nuxt.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 5cecdb5..44665e5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -8,6 +8,11 @@ export default defineNuxtConfig({ app: { baseURL: '/yunohost/sso', buildAssetsDir: '/assets/', + head: { + link: [ + { rel: 'stylesheet', href: '/yunohost/sso/customassets/custom.css' }, + ], + }, }, modules: [ '@nuxtjs/color-mode',