From d392da64ab48a6c930d7f523dd9f844b0db2bd0b Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 19 Feb 2017 15:32:10 +0900 Subject: :tada: --- src/web/app/boot.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/web/app/boot.js') diff --git a/src/web/app/boot.js b/src/web/app/boot.js index b98602d402..c5dc6845af 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -17,6 +17,11 @@ require('./common/tags'); document.domain = CONFIG.host; +// Set global configration +riot.mixin({ + CONFIG: CONFIG +}); + // ↓ iOS待ちPolyfill (SEE: http://caniuse.com/#feat=fetch) require('whatwg-fetch'); @@ -109,7 +114,7 @@ function fetchme(token, cb) { } // Fetch user - fetch(CONFIG.api.url + '/i', { + fetch(CONFIG.apiUrl + '/i', { method: 'POST', body: JSON.stringify({ i: token -- cgit v1.3.1-freya