From 79e0e5668df6fbe43a9fcda4a69ed6427ac70826 Mon Sep 17 00:00:00 2001 From: Rokt33r Date: Sun, 13 Dec 2015 16:29:01 +0900 Subject: [PATCH] switch API URL --- lib/api.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/api.js b/lib/api.js index 63b307cf..60a75a11 100644 --- a/lib/api.js +++ b/lib/api.js @@ -2,8 +2,8 @@ import superagent from 'superagent' import superagentPromise from 'superagent-promise' // import auth from 'boost/auth' -// export const SERVER_URL = 'https://b00st.io/' -export const SERVER_URL = 'http://localhost:3333/' +export const SERVER_URL = 'https://b00st.io/' +// export const SERVER_URL = 'http://localhost:3333/' export const request = superagentPromise(superagent, Promise)