通过npm将Bootstrap4添加到Symfony4项目中

时间:2018-05-16 20:03:19

标签: npm bootstrap-4 symfony4

我是Symfony和NPM,Composer等的新手。我设置了我的symfony项目并通过NPM安装了Bootstrap 4

npm install bootstrap

现在,引导程序文件位于“node_modules / bootstrap”文件夹中。 如何在base.html.twig中正确包含此源?

<link href="{{ asset('node_modules/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet">

我不知道这是不是正确的方法。正如我所说,我是新手。

1 个答案:

答案 0 :(得分:0)

您可以在js文件中使用“导入”来导入CSS。

import 'bootstrap/dist/css/bootstrap.min.css';

https://reactstrap.github.io/