You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-6Lines changed: 13 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,7 @@
204
204
|196|[How do you use jquery in Angular?](#how-do-you-use-jquery-in-angular)|
205
205
|197|[What is the reason for No provider for HTTP exception?](#what-is-the-reason-for-no-provider-for-http-exception)|
206
206
|198|[](#)|
207
-
|199|[](#)|
207
+
|199|[How can I use SASS in angular project?](#how-can-i-use-sass-in-angular-project)|
208
208
|200|[](#)|
209
209
210
210
1.### What is Angular Framework?
@@ -2443,8 +2443,8 @@
2443
2443
• TypeScript 3.1
2444
2444
• RxJS 6.3
2445
2445
• New Angular CLI
2446
-
• CLI Prompts capability provide an ability to ask questions to the user before they run. It is like interactive dialog between the user and the CLI
2447
-
• With the improved CLI Prompts capability, it helps developers to make the decision. New ng commands ask users for routing and CSS styles types(SCSS) and ng add @angular/material asks for themes and gestures or animations.
2446
+
• CLI Prompts capability provide an ability to ask questions to the user before they run. It is like interactive dialog between the user and the CLI
2447
+
• With the improved CLI Prompts capability, it helps developers to make the decision. New ng commands ask users for routing and CSS styles types(SCSS) and ng add @angular/material asks for themes and gestures or animations.
2448
2448
2449
2449
**[⬆ Back to Top](#table-of-contents)**
2450
2450
@@ -3012,12 +3012,19 @@
3012
3012
3013
3013
**[⬆ Back to Top](#table-of-contents)**
3014
3014
3015
-
198. ### ?
3015
+
198. ### How do you determine active route?
3016
3016
3017
3017
**[⬆ Back to Top](#table-of-contents)**
3018
3018
3019
-
199. ### ?
3020
-
3019
+
199. ### How can I use SASS in angular project?
3020
+
When you are creating your project with angular cli, you can use `ng new`command. It generates all your components with predefined sass files.
3021
+
```javascript
3022
+
ng new My_New_Project --style=sass
3023
+
```
3024
+
But if you are changing your existing style in your project then use `ng set` command,
0 commit comments