Issue description
localhost/:24 Error: Fetch error: 404 Not Found
Instantiating http://localhost:3000/@agm/core
On my app.module I 've the below config
import {AgmCoreModule} from "@agm/core";
@NgModule({
imports: [...,
AgmCoreModule.forRoot({apiKey: 'myKey'})],
....
On my html component I have
<agm-map [latitude]="lat" [longitude]="lng" [zoom]="zoom" [zoomControl]="false">
<agm-marker
[latitude]="lat"
[longitude]="lng">
<agm-info-window>
<strong>{{label}}</strong>
</agm-info-window>
</agm-marker>
</agm-map>
What would be present on System.js?
'@agm/core': 'node_modules/@agm/core/core.umd.js' on systemjs solves it!
This should be in the documentation. 馃檪
Most helpful comment
'@agm/core': 'node_modules/@agm/core/core.umd.js'on systemjs solves it!