-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧹 Node 16 has reached End-of-Life! Long Live Node 18! (#1879)
- #892 Per https://github.com/nodejs/release#release-schedule, Node 16 is decommissioned! This bumps us to the newest LTS, Node 18! Hooray! Make sure to delete your `node_modules` folder, since I have no idea how any of this works but I expect that keeping old node modules around is bad-idea-jeans.
- Loading branch information
Showing
7 changed files
with
12 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
|
||
PORT=3000 | ||
# Used to build URLs in mailers | ||
APP_ROOT_URL=http://localhost:3000 | ||
APP_ROOT_URL=http://127.0.0.1:3000 | ||
EMAIL_DEFAULT_FROM='Neighborhood Support <[email protected]>' | ||
|
||
# Ensures the data in our database is fully encrypted | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
16.20.1 | ||
18.18.0 |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export default (function () { | ||
return process.env.APP_ROOT_URL | ||
? process.env.APP_ROOT_URL | ||
: "http://localhost:3000"; | ||
: "http://127.0.0.1:3000"; | ||
}); |
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