DEV Community

DENIS
DENIS

Posted on

Answer: How to Include JS file in ionic 3

This solution only worked for me

Put the import js in src/index.html header tag, before the build/polyfills.js and build/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)