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/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!./node_modules/postcss-loader/src??embedded!./node_modules/sass-loader/lib/loader.js??ref--13-3!./src/assets/scss/style.scss) Module Warning (from ./node_modules/postcss-loader/src/index.js): Warning
(5013:3) end value has mixed support, consider using flex-end instead
WARNING in ./src/assets/scss/style.scss (./node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!./node_modules/postcss-loader/src??embedded!./node_modules/sass-loader/lib/loader.js??ref--13-3!./src/assets/scss/style.scss) Module Warning (from ./node_modules/postcss-loader/src/index.js): Warning
(5019:3) end value has mixed support, consider using flex-end instead
You can run ng add @angular/localize to include required packages. Finally, run ng update @angular/core @angular/cli command to update to Angular 11. This will migrate your project to latest Angular release. After the update to Angular 11 is done your project will be using Typescript 4.
First uninstall the existing Angular cli packages. Then run npm cache verify command to clear the node packages cache. Then install latest Angular CLI version using npm install -g @angular/cli@latest command.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With