在我的HTML中,我使用它来链接boostrap文件
<link rel="stylesheet" type="text/css" href="/node_modules/bootstrap/dist/css/bootstrap.min.css"/>
我也试过这个
@import url("/node_modules/bootstrap/dist/css/bootstrap.min.css");
我甚至尝试使用javascript和它一样。
<script defer src="/node_modules/jquery/dist/jquery.min.js"/>
但两者都没有加载?为什么呢?
答案 0 :(得分:1)
我在这里看到两个可能的问题:
./node_modules/etc
或node_modules/etc
npm install
且无法获取依赖项。实际上,我认为不应该这样做。您应该将要使用的资源复制到html
文件旁边的目录(即js
或style
),并使用脚本标记加载它们(即{{ 1}}或只是通过any free CDN