-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Make a COOKIE_DOMAIN constant
- Loading branch information
Showing
2 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* The root Domain on which all cookies should be set. (See: | ||
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#define_where_cookies_are_sent) | ||
* | ||
* In production, this should be set to "graduatenu.com" which allows | ||
* api.graduatenu.com to set cookies on every other *.graduatenu.com domain. | ||
*/ | ||
export const COOKIE_DOMAIN = | ||
process.env.NODE_ENV === "production" ? "graduatenu.com" : "localhost"; |