From d1993f4bc2b18524c0a08d3126d7989cd5dd7f6e Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Tue, 14 Oct 2025 20:22:24 +0200 Subject: [PATCH] chore: update port mapping in docker-compose files from 3000 to 3020 and adjust font settings in layout component --- docker-compose.dev.yml | 2 +- docker-compose.yml | 2 +- src/app/layout.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 03a773a..4f08802 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -9,7 +9,7 @@ services: - MONGODB_URI=${MONGODB_URI} container_name: stripstream-app ports: - - "3000:3000" + - "3020:3000" volumes: - .:/app - /app/node_modules diff --git a/docker-compose.yml b/docker-compose.yml index 25ace65..a80c9f5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,7 @@ services: container_name: stripstream-app restart: unless-stopped ports: - - "3000:3000" + - "3020:3000" environment: - NODE_ENV=production - MONGODB_URI=mongodb://${MONGO_USER}:${MONGO_PASSWORD}@mongodb:27017/stripstream?authSource=admin diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f96d3a5..d416478 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -15,7 +15,7 @@ import { FavoriteService } from "@/lib/services/favorite.service"; import { LibraryService } from "@/lib/services/library.service"; import { SeriesService } from "@/lib/services/series.service"; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ subsets: ["latin"], display: "swap", adjustFontFallback: false, preload: false }); export const metadata: Metadata = { title: {