我正在尝试使用或在我看来将 bootstrap css 链接到我的 Laravel 项目,但它不起作用。
在 scss 类中我试过这个:
@import 'node_modules/bootstrap/scss/bootstrap' or @import '~bootstrap/scss/bootstrap';
在视图类我试过这个:
<!--<link rel="stylesheet" type="text/css" href="css/app.css"/>-->
or <link rel="stylesheet" type="text/css" href="{{url('css/app.css')}}"/>
我的 scss 类如下所示:
@import url('https://fonts.googleapis.com/css?family=Nunito');
@import 'variables';
@import '~bootstrap/scss/bootstrap';
//@import 'node_modules/bootstrap/scss/bootstrap';
@import 'custom';
它们会显示任何错误,但不会加载引导程序样式
慕森卡
梦里花落0921