Got warning after update angular 7 to angular 8 version

前端 未结 2 1398
慢半拍i
慢半拍i 2021-02-20 08:26

I updated the packages and after starting npm i got 2 warning which are follows:

WARNING in ./src/assets/scss/style.scss (./node_modules/@angular-devkit/b

相关标签:
2条回答
  • 2021-02-20 08:40

    This error generally comes in SCSS/CSS file. In your stylesheet just search "start" and replace it with flex-start. This property is used to justify-content in the navbar etc.

    0 讨论(0)
  • 2021-02-20 08:57

    This warning is saying that you should use flex-start instead of start. Same for flex-end. And this is just a warning, it won't affect your project.

    0 讨论(0)
提交回复
热议问题