refactor: switch to path location strategy

This commit is contained in:
Sergey Andrievskiy 2019-06-24 13:04:43 +03:00
parent ea1a3699fb
commit 7dfb683b85
3 changed files with 2 additions and 6 deletions

View file

@ -9,7 +9,7 @@ export class CountryOrdersMapService {
constructor(private http: HttpClient) {}
getCords(): Observable<any> {
return this.http.get('./assets/leaflet-countries/countries.geo.json');
return this.http.get('assets/leaflet-countries/countries.geo.json');
}
}