From f8feacf821b3983ad8ee0bf920f68a35661291ad Mon Sep 17 00:00:00 2001 From: HaveF Date: Tue, 24 Jan 2017 21:46:57 +0800 Subject: [PATCH] WIP still try local remotedev --- app/stores/counter_store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/stores/counter_store.js b/app/stores/counter_store.js index aac38fe..a646e75 100644 --- a/app/stores/counter_store.js +++ b/app/stores/counter_store.js @@ -2,7 +2,7 @@ import { observable, action, runInAction } from 'mobx' import remotedev from 'mobx-remotedev' import api from './api' -@remotedev({ remote: false, onlyActions: true, global: true }) +@remotedev({ remote: false, onlyActions: true, global: true, hostname: 'localhost', port: 8000 }) class CounterStore { @observable counter = 0; @observable remoteCounter = 0;