From f10c170c4cd20e894a6212cf702cea6f49c06de4 Mon Sep 17 00:00:00 2001 From: Aamogh <120258212+aamoghS@users.noreply.github.com> Date: Thu, 14 May 2026 22:39:48 -0400 Subject: [PATCH] Modify Firebase hosting configuration Updated Firebase configuration to include multiple hosting sites with specific public directories and settings. --- .firebaserc | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/.firebaserc b/.firebaserc index 56aa143..e7b276b 100644 --- a/.firebaserc +++ b/.firebaserc @@ -1,14 +1,30 @@ { - "projects": { - "default": "dsgt-website" - }, - "targets": { - "dsgt-website": { - "hosting": { - "hacklytics": [ - "hacklytics2027" - ] - } - } - } + "hosting": [ + { + "site": "dsgt-portal", + "public": "sites/portal/public", + "cleanUrls": true, + "rewrites": [ + { + "source": "**", + "run": { + "serviceId": "portal", + "region": "us-central1" + } + } + ] + }, + { + "site": "dsgt-website", + "public": "sites/mainweb/out", + "cleanUrls": true, + "trailingSlash": true + }, + { + "site": "hacklytics2027", + "public": "sites/hacklytics2027/out", + "cleanUrls": true, + "trailingSlash": true + } + ] }