CORS fontawesome on Jet 1.0

I create starter project with this GitHub - webix-hub/jet-start: App used as a start point for the Webix Jet
when I change this resource js/css in index.html
from


src="//cdn.webix.com/edge/webix.js"
href="//cdn.webix.com/edge/webix.css"

to this


src="http://localhost/myapp/app/sources/libs/codebase/webix.js"
href="http://localhost/myapp/app/sources/libs/codebase/webix.css"

I got an error CORS error, anyone help me how to resolve this.
Thanks.

Try to use

src="/sources/libs/codebase/webix.js"
href="/sources/libs/codebase/webix.css"

Also, you can install webix through npm instead of adding it manually. So you will be able to load them from node_modules like

src="/node_modules/webix/webix.js"

or

src="/node_modules/@xbs/webix-pro/webix.js"