chore(config,manifest): Update start script with PORT environment variable and theme color to white

- Update start script to accept PORT environment variable with default fallback to 3000
- Change manifest theme color from teal (#00d4aa) to white (#ffffff) for consistent branding
- Align theme configuration with recent accent color updates across the application
This commit is contained in:
AskIt
2026-01-26 00:17:54 +01:00
parent f1c94069fd
commit e7342087a5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start -p ${PORT:-3000}",
"lint": "eslint", "lint": "eslint",
"db:generate": "drizzle-kit generate", "db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push", "db:push": "drizzle-kit push",
+1 -1
View File
@@ -5,7 +5,7 @@
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#0a0a0a", "background_color": "#0a0a0a",
"theme_color": "#00d4aa", "theme_color": "#ffffff",
"orientation": "portrait-primary", "orientation": "portrait-primary",
"icons": [ "icons": [
{ {