UNPKG
community-hubbub
Version:
latest (1.0.0)
1.0.0
client for hubbub community
github.com/hub-up/hubbub-community
hub-up/hubbub-community
community-hubbub
/
server-url.js
10 lines
(6 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
let
SERVER_URL
=
'https://shrouded-everglades-62939.herokuapp.com'
;
if
(process.
env
.
NODE_ENV
===
'development'
) {
SERVER_URL
=
'http://127.0.0.1:3000'
; }
module
.
exports
=
SERVER_URL
;