From 39b8a5682fdaefabaea925589bc7ab8a7c9f8895 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Wed, 3 Dec 2025 16:27:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20extend=20CORS=20origins?= =?UTF-8?q?=20and=20update=20todo=20theme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add ports 5187-5190 to CORS origins for future apps - Change todo app default theme from amethyst to ocean 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .env.development | 2 +- apps/todo/apps/web/src/lib/stores/theme.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.development b/.env.development index 8ac7485d2..ff9ff89dd 100644 --- a/.env.development +++ b/.env.development @@ -46,7 +46,7 @@ JWT_ACCESS_TOKEN_EXPIRY=15m JWT_REFRESH_TOKEN_EXPIRY=7d JWT_ISSUER=manacore JWT_AUDIENCE=manacore -CORS_ORIGINS=http://localhost:3000,http://localhost:3002,http://localhost:5173,http://localhost:5174,http://localhost:5175,http://localhost:5176,http://localhost:5177,http://localhost:5178,http://localhost:5179,http://localhost:5180,http://localhost:5181,http://localhost:5182,http://localhost:5183,http://localhost:5184,http://localhost:5185,http://localhost:5186,http://localhost:8081 +CORS_ORIGINS=http://localhost:3000,http://localhost:3002,http://localhost:5173,http://localhost:5174,http://localhost:5175,http://localhost:5176,http://localhost:5177,http://localhost:5178,http://localhost:5179,http://localhost:5180,http://localhost:5181,http://localhost:5182,http://localhost:5183,http://localhost:5184,http://localhost:5185,http://localhost:5186,http://localhost:5187,http://localhost:5188,http://localhost:5189,http://localhost:5190,http://localhost:8081 CREDITS_SIGNUP_BONUS=150 CREDITS_DAILY_FREE=5 RATE_LIMIT_TTL=60 diff --git a/apps/todo/apps/web/src/lib/stores/theme.ts b/apps/todo/apps/web/src/lib/stores/theme.ts index 12afb82dc..682bdcf51 100644 --- a/apps/todo/apps/web/src/lib/stores/theme.ts +++ b/apps/todo/apps/web/src/lib/stores/theme.ts @@ -3,5 +3,5 @@ import { createThemeStore } from '@manacore/shared-theme'; // Create theme store with Todo's primary color (purple/violet) export const theme = createThemeStore({ appId: 'todo', - defaultVariant: 'amethyst', + defaultVariant: 'ocean', });