admin管理员组文章数量:1419194
I tried ES imports statements and normal script tag to import the required JS file and CSS file for bootstrap in astro js project
I am getting this Issue.
Error: The following dependencies are imported but could not be resolved:
js/jquery-3.4.1.min.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro) js/bootstrap.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro) js/custom.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro)
Are they installed?
I tried ES imports statements and normal script tag to import the required JS file and CSS file for bootstrap in astro js project
I am getting this Issue.
Share Improve this question edited May 12, 2022 at 6:04 Abdeali Chandanwala asked Jan 23, 2022 at 17:44 Abdeali ChandanwalaAbdeali Chandanwala 8,8486 gold badges33 silver badges49 bronze badgesError: The following dependencies are imported but could not be resolved:
js/jquery-3.4.1.min.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro) js/bootstrap.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro) js/custom.js (imported by /media/****li/hdd/***ed-astro/src/layouts/main.astro)
Are they installed?
3 Answers
Reset to default 2Got it, in the main layout file - I had to rectify the file path
From
<script src="js/custom.js"></script>
TO
<script src="assets/js/custom.js"></script>
same for all CSS file ..
all these assets were places in the public folder.
For me, I had to set type="text/javascript"
It wasn't working till I added that.
Use craigmichaelmartin's solution from https://stackoverflow./a/51271892/1510777.
Short version: Add a jQuery loader module using the code below, and import that instead of 'jquery'.
import {$,jQuery} from 'jquery';
window.$ = $;
window.jQuery = jQuery;
export default $;
export { jQuery };
本文标签: javascriptI want to import bootstrap js and jquery js file in astro jsStack Overflow
版权声明:本文标题:javascript - I want to import bootstrap js and jquery js file in astro js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745294578a2651998.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论