“Winkelimportstile.Scss” Code-Antworten

So importieren Sie die SCSS -Datei in Angular

In the new angular v6, importing sass files is a little different from the previous version.

I just needed to import like this (in a component stylesheet)

@import "~src/sass/variables";    // note: without file extension

Now everything works fine

Thanks all for the help
Ankur

Winkelimportstile.Scss

in angular.json:
...
"styles": [
              ...
              "src/styles.scss"
            ],

and in the components.ts
...
styleUrls: ['./app.component.scss']
MitchAloha

Ähnliche Antworten wie “Winkelimportstile.Scss”

Fragen ähnlich wie “Winkelimportstile.Scss”

Weitere verwandte Antworten zu “Winkelimportstile.Scss” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen