Reputation: 29
I'm still new with web development. Right now, just new with angular. How can I change from SCSS to CSS stylesheet cause I accidently select SCSS style when I create a new angular project.
One more thing, how can I change terminal bar in VS Code from to
. I tried to Google but can't find the answer.
Upvotes: 0
Views: 741
Reputation: 1887
To have Angular default to generating components with CSS files and not SCSS files, simply edit your configuration. Keep in mind you can still use CSS syntax inside SCSS files.
ng config schematics.@schematics/angular:component.styleext css
You can also do this process by hand by editing your angular.json
file
Open your VS Code settings and search for terminal.integrated.tabs.enabled
and check the option named Terminal > Integrated > Tabs
.
Upvotes: 2