Skip to content

Instantly share code, notes, and snippets.

@TomCosta
Created November 7, 2022 23:28
Show Gist options
  • Save TomCosta/41ea9d315acec01c7682404880a47fc2 to your computer and use it in GitHub Desktop.
Save TomCosta/41ea9d315acec01c7682404880a47fc2 to your computer and use it in GitHub Desktop.
Import Bootstrap in Angular
FILE: app.module.ts
imports: [
BrowserModule,
NgbModule,
AppRoutingModule,
]
FILE: angular.json
"styles": [
"node_modules/bootstrap/scss/bootstrap.scss",
"node_modules/bootstrap-icons/font/bootstrap-icons.css",
"src/styles.scss"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment