英文:
Shopware 6 with APP_ENV=dev does not display the debug toolbar
问题
After reading this https://developer.shopware.com/docs/guides/plugins/apps/app-scripts#developing-debugging-scripts, I updated the .env file and set "dev" as APP_ENV value but the debug bar is not displayed anywhere in the storefront.
Is there something else to do?
My local Shopware version is 6.4.18.0.
英文:
After reading this https://developer.shopware.com/docs/guides/plugins/apps/app-scripts#developing-debugging-scripts, I updated the .env file and set "dev" as APP_ENV value but the debug bar is not displayed anywhere in the storefront.
Is there something else to do?
My local Shopware version is 6.4.18.0
答案1
得分: 9
如果您通过composer create-project shopware/production
使用了Symfony Flex模板,您还需要额外安装shopware/dev-tools
:
composer require shopware/dev-tools
英文:
If you used the Symfony Flex template via composer create-project shopware/production
you have to additionally install shopware/dev-tools
composer require shopware/dev-tools
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论