We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f202f6d commit 22c150eCopy full SHA for 22c150e
gulpfile.js
@@ -12,7 +12,7 @@ const nodemon = require('gulp-nodemon');
12
const config = require('./app/config');
13
14
// Set configuration variables
15
-const port = process.env.PORT || config.port;
+const port = parseInt(process.env.PORT) || config.port;
16
17
// Delete all the files in /public build directory
18
function cleanPublic() {
0 commit comments