Connection to server

I’m trying to deploy the project, i tried to do “npm run build” but there are the following errors:

GET http://localhost:8080/codebase/webix.js 404 (Not Found)
GET http://localhost:8080/codebase/webix.css 404 (Not Found)
myapp.js:1 Uncaught ReferenceError: webix is not defined
at Object. (myapp.js:1)
at t (myapp.js:1)
at Object. (myapp.js:1)
at t (myapp.js:1)
at Object. (myapp.js:1)
at t (myapp.js:1)
at Object. (myapp.js:1)
at t (myapp.js:1)
at myapp.js:1
at myapp.js:1
(anonymous) @ myapp.js:1
t @ myapp.js:1
(anonymous) @ myapp.js:1
t @ myapp.js:1
(anonymous) @ myapp.js:1
t @ myapp.js:1
(anonymous) @ myapp.js:1
t @ myapp.js:1
(anonymous) @ myapp.js:1
(anonymous) @ myapp.js:1

what can i do?

Hello,

Please check the path to compiled files in your “index.html” file. You should include them from the ready-made “codebase” folder that is created by a build command in your project root.

In most cases it would be like this:

<script type="text/javascript" src="codebase/myapp.js"></script>
<link rel="stylesheet" type="text/css" href="codebase/myapp.css">