top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create a Angular Project with SCSS setup instead of CSS using Angular CLI?

0 votes
333 views
How to create a Angular Project with SCSS setup instead of CSS using Angular CLI?
posted Dec 29, 2017 by Ujjwal Mehra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

By default, Angular CLI create a project with CSS setup. You can alter with using --style=scss flag options for SCSS setup

Example:

ng new angularSCSSProject --style=scss
answer Dec 29, 2017 by Parampreet Kaur
...