Added js file to components.js but its not being included in index.html

0
I've modified the components.js file I found under the theme folder to include a js file but it is not being included in the deployed index file. Here is the output of the deployment, my file is sitting in the themes folder called mycustom.js: {"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","styles/css/lib/lib.css","styles/css/custom/custom.css"],"js":["mxclientsystem/mxui/mxui.js","mycustom.js"]},"cachebust":"636380598526532366","downloadResources":false}  
asked
2 answers
10

Hi James, You also have to reference them in your index.html in the <head> section. The components.json is used for your hybrid mobile app.

 

	<script type="text/javascript" src="mycustom.js{{cachebust}}"></script>
    <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css?{{cachebust}}">
etc..

 

answered
1

Hi James,

 

Perhaps the solution that you find here will work for you.

 

Good luck

answered