0๐
โ
Try Like this and make sure static
folder and create js
floder inside it and put your jquery-3.4.1.min.js
file there. In your nuxt.config.js
put :
script: [
{ src: 'js/jquery-3.4.1.min.js' },
]
0๐
I fixed the issue by adding a new folder called static and I put inside it all js files and then
script: [
{ src: './js/jquery-3.4.1.min.js', type: 'text/javascript' },
],
0๐
Source:stackexchange.com