This solution only worked for me
Put the import js in
src/index.htmlheader tag, before thebuild/polyfills.jsandbuild/main.js(they are in body tag);
Example : I created a file src/assets/test.js with a var testvar, imported in src/index.html and then in src/app/app.component.ts declared declare var testvar;.
test.js
var…
Top comments (0)