Start your All-Access Pass to unlock this challenge
How can you load the Symfony application into the prod environment locally?
prod
Create a new .env.local file and add APP_ENV=prod to it.
.env.local
APP_ENV=prod
Run the Symfony built-in web server like:
APP_ENV=prod symfony serve
All options are correct!
Set APP_ENV=prod in the .env file
.env