Skip to content

Instantly share code, notes, and snippets.

@rvlb
Last active June 1, 2017 22:13
Show Gist options
  • Save rvlb/bb9838b3081497806880db002666f155 to your computer and use it in GitHub Desktop.
Save rvlb/bb9838b3081497806880db002666f155 to your computer and use it in GitHub Desktop.

NÃO RECOMENDADO!

Terminal:

ng new my-project --style=scss
cd my-project
npm install --save bootstrap@4.0.0-alpha.6
ng serve

Em src/styles.scss, adicionar:

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

Em src/app/app.module.ts:

declare var jquery: any;
declare var $: any;

Em angular-cli.json:

...
"scripts": [
  "../node_modules/jquery/dist/jquery.js",
  "../node_modules/tether/dist/js/tether.js",
  "../node_modules/bootstrap/dist/js/bootstrap.js"
],
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment