MarkK
MarkK

Reputation: 1088

Vue 3 yarn serve stuck at 42% when importing external js file

Vue 3 yarn serve stuck at 42% when I try to import an external js file into main.ts.

This is what causes the issue:

main.ts

import '@/assets/js/jquery.min.js';

No error just stuck at:

42% building 267/276 modules 9 active /Users/mark/Documents/workspace/testapp/test-web/node_modules/html-entities/lib/surrogate-pairs.js

When I try to import any external js file I have the same issue.

As there is no error output as such, can anyone tell me what I'm doing incorrectly?

Upvotes: 0

Views: 68

Answers (1)

ctorrez04
ctorrez04

Reputation: 101

Did you put the jquery javascript file in that folder? Try to add the dependence using package.json and import it like this example https://www.npmjs.com/package/jquery

I see that you're using typescript because of your main.ts file and usually the app cannot compile js files when you are using typescript in your project

Upvotes: 1

Related Questions