You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the dev.js script it calls
nodemon(-x 'NGROK_URL=${url} PORT=${port} node' ./backend/server.js);
I imported 'const { exec } = require('child_process');'
Then changed the above line to
exec('SET NGROK_URL='+ url);
nodemon(-x 'node' ./backend/server.js);
Also changed the package.js from export to set.
The text was updated successfully, but these errors were encountered:
In the dev.js script it calls
nodemon(
-x 'NGROK_URL=${url} PORT=${port} node' ./backend/server.js
);I imported 'const { exec } = require('child_process');'
Then changed the above line to
exec('SET NGROK_URL='+ url);
nodemon(
-x 'node' ./backend/server.js
);Also changed the package.js from export to set.
The text was updated successfully, but these errors were encountered: