mhanifmm96
mhanifmm96

Reputation: 29

SCSS to CSS style sheet

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 image 1 to image 2. I tried to Google but can't find the answer.

Upvotes: 0

Views: 741

Answers (1)

evelynhathaway
evelynhathaway

Reputation: 1887

Configuring Your Default Angular Component Extension

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

VS Code Terminal Tabs

Open your VS Code settings and search for terminal.integrated.tabs.enabled and check the option named Terminal > Integrated > Tabs.

Upvotes: 2

Related Questions