File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,20 @@ You can easily build a new app from scratch or integrate some components into an
30
30
31
31
## Getting Started
32
32
33
+ Make you sure that [ sass] ( https://www.npmjs.com/package/sass ) and [ bootstrap] ( https://www.npmjs.com/package/bootstrap ) modules are installed :
34
+
35
+ ``` sh
36
+ npm install -D sass
37
+
38
+ ```
39
+
40
+ After installing bootstrap, add these css imports in the root file of your components tree :
41
+
42
+ ``` js
43
+ import ' bootstrap/scss/bootstrap-grid.scss' ;
44
+ import ' bootstrap/scss/bootstrap-reboot.scss' ;
45
+ ```
46
+
33
47
You can either install everything and use only what you need. If you do that you will be able to use tree shaking to have a smaller bundle.
34
48
However, you will need to import all the styles and not only the style related to your component.
35
49
You can’t perform that action at this time.
0 commit comments