N1ck0lay

Results 2 comments of N1ck0lay

to use Less css you need: 1. npm i less --save-dev (in the root folder) 2. add "--css-modules false" to your **build** and **start** commands, so you will have: "build":...

Read this: https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 in my case, in .eslintrc file I had: ``` "extends": [ "standard", "standard-react", "plugin:prettier/recommended", "prettier/standard", "prettier/react" ], ``` and now I have: ``` "extends": [ "standard-react", "plugin:prettier/recommended"...