Commit 462ac575 authored by Michel Roy's avatar Michel Roy
Browse files

remove hardcoded setup address

parent b770286f
Loading
Loading
Loading
Loading
+12 −14
Original line number Diff line number Diff line
@@ -71,8 +71,8 @@ import {
} from '../state/ui';

// MEEP Controller REST API JS client
// var basepath = 'http://' + location.host + location.pathname + 'v1';
var basepath = 'http://10.3.16.73:30000/v1';
var basepath = 'http://' + location.host + location.pathname + 'v1';
//var basepath = 'http://10.3.16.73:30000/v1';

meepCtrlRestApiClient.ApiClient.instance.basePath = basepath.replace(/\/+$/, '');

@@ -421,5 +421,3 @@ const ConnectedMeepContainer = connect(
)(MeepContainer);

export default ConnectedMeepContainer;