I have created a .env file in my project root but I\'m new to working with environments / variables and so I\'m unsure how to integrate the file so I can overri
.env
a short answer is to just inline in the script command like
script
{ "scripts": { "start": "EXTEND_ESLINT=true react-scripts start" } }
but this is less than ideal since you'd have to add EXTEND_ESLINT=true to all the other react-script commands as well
EXTEND_ESLINT=true
react-script