gpt4 book ai didi

twitter-bootstrap - Angular 2 不导入 Bootstrap css

转载 作者:太空狗 更新时间:2023-10-29 17:15:55 26 4
gpt4 key购买 nike

直接来自 https://angular.io/docs/ts/latest/guide/forms.html

Let's add the stylesheet.

Open a terminal window in the application root folder and enter the command:

npm install bootstrap --save

Open index.html and add the following link to the head.

link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">

但是,我一直收到 404

GET http://localhost:4200/node_modules/bootstrap/dist/css/bootstrap.min.css

当我添加带有在线地址的脚本时它可以工作,但为什么 Angular 无法找到我的文件的路径?

最佳答案

如果您使用的是 angular-cli,您可以转到 root/styles.css 并添加这一行

@import "../node_modules/bootstrap/dist/css/bootstrap.min.css";

或者去.angular-cli.json修改styles

"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
]

关于twitter-bootstrap - Angular 2 不导入 Bootstrap css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38189454/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com