Stackblitz: How to import Bootstrap CSS framework

前端 未结 8 1120
死守一世寂寞
死守一世寂寞 2020-12-31 02:52

I just found the amazing Stackblitz online VS Code editor. I created an Angular project and under dependencies installed the Bootstrap CSS framework but how

8条回答
  •  梦谈多话
    2020-12-31 03:42

    In angular.json:

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

    For me works just fine.

提交回复
热议问题