且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Angular 6 在 angular.json 中加载 css 文件夹

更新时间:2023-09-30 10:32:22

angular 6中,你必须在src/style.css中添加only代码>(而不是angular.json):

In angular 6 you have to add only in src/style.css (instead angular.json):

@import "assets/plugins/listtyicons/style.css";
@import "assets/plugins/jquery-ui/jquery-ui.min.css";
@import "assets/plugins/bootstrap/css/bootstrap.min.css";
@import  "assets/plugins/plugins/isotope/isotope.min.css";

angular.json

"styles": [
          "src/styles.css"
        ]