From 9e5cee1e5f29b815738b1492dfa2f923ae02f33c Mon Sep 17 00:00:00 2001 From: Olivier Barais Date: Thu, 16 Jan 2025 13:45:04 +0100 Subject: [PATCH] disable dark mode --- src/main/webapp/bootstrap.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/webapp/bootstrap.ts b/src/main/webapp/bootstrap.ts index 592e2ba5..6efd747b 100644 --- a/src/main/webapp/bootstrap.ts +++ b/src/main/webapp/bootstrap.ts @@ -67,6 +67,10 @@ bootstrapApplication(MainComponent, { provideAnimations(), providePrimeNG({ theme: { + options: { + // eslint-disable-next-line no-constant-binary-expression + darkModeSelector: false || 'none', + }, preset: Lara, }, }),