From cd477bf63327310774439869f7d971f3da993262 Mon Sep 17 00:00:00 2001 From: sambokar Date: Fri, 21 Jun 2024 12:04:34 -0400 Subject: [PATCH] not sure why, but next-auth login is not being permitted on development site for some reason --- frontend/ecosystem.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/ecosystem.config.js b/frontend/ecosystem.config.js index 828eaa9d..e40da194 100644 --- a/frontend/ecosystem.config.js +++ b/frontend/ecosystem.config.js @@ -7,5 +7,12 @@ module.exports = { watch: false, autorestart: true, }, + { + name: "forestgeo-livesite-development", + script: "./node_modules/next/dist/bin/next", + args: "start -p " + (process.env.PORT || 3000), + watch: false, + autorestart: true, + }, ], };