moved bitcoreNode to parent package.json; changed apiPrefix

This commit is contained in:
Darren Nelsen 2018-03-08 13:55:33 -05:00
parent 12775d3170
commit 0473d96ab8
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,6 @@
{
"name": "insight-ui",
"private": true,
"bitcoreNode": "bitcore-node",
"insightConfig": {
"apiPrefix": "api",
"routePrefix": ""
@ -67,4 +66,4 @@
"node": ">=8"
},
"license": "MIT"
}
}

View File

@ -11,7 +11,7 @@ import 'rxjs/add/operator/map';
@Injectable()
export class ApiProvider {
public apiPrefix: string = '/api/';
public apiPrefix: string = '/insight-api/';
constructor(public http: Http) {
}