Merge branch 'main' of github.com:VAR-Virtual-Air-Rescue/var-monorepo

This commit is contained in:
Nicolas
2025-06-11 12:55:31 +02:00
3 changed files with 7 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
@import "tailwindcss";
@plugin "daisyui";
@plugin "daisyui" {
themes: dark, nord;
}
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,

View File

@@ -1,9 +1,9 @@
import { Geist, Geist_Mono } from "next/font/google";
import { NextAuthSessionProvider } from "./_components/AuthSessionProvider";
import { getServerSession } from "./api/auth/[...nextauth]/auth";
import "./globals.css";
import { CustomErrorBoundary } from "_components/ErrorBoundary";
import { Toaster } from "react-hot-toast";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -23,7 +23,7 @@ const RootLayout = async ({
const session = await getServerSession();
return (
<html lang="en">
<html lang="en" data-theme="dark">
<NextAuthSessionProvider session={session}>
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<div>

View File

@@ -64,7 +64,7 @@ services:
env_file:
- .env.prod
deploy:
replicas: 1
replicas: 2
labels:
- "traefik.enable=true"
- "traefik.http.routers.dispatch.rule=Host(`dispatch.premiumag.de`)"
@@ -85,7 +85,7 @@ services:
env_file:
- .env.prod
deploy:
replicas: 1
replicas: 3
labels:
- "traefik.enable=true"
- "traefik.http.routers.dispatch-server.rule=Host(`api.dispatch.premiumag.de`)"