Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 276 Bytes

SYSTEMJS.md

File metadata and controls

21 lines (16 loc) · 276 Bytes

SystemJS

In your system.config.js:

Add to map

var map = {
    ...
    'ngx-img-fallback': 'node_modules/ngx-img-fallback/bundles'
}

and then to packages

var packages = {
    ...
    'ngx-img-fallback': { defaultExtension: 'js' }
}