Explicitly set env vars as strings.

This commit is contained in:
Jayden Seric 2019-10-10 10:53:40 +11:00
parent acfe8de26f
commit 4d4d58699f
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
NODE_ENV=development
PORT=3001
NODE_ENV='development'
PORT='3001'

View File

@ -1,3 +1,3 @@
NODE_ENV='development'
PORT=3000
PORT='3000'
API_URI='http://localhost:3001/graphql'