Home > OS >  Magento 2 commands. setup update let theme disappear
Magento 2 commands. setup update let theme disappear

Time:02-13

I have Magento 2. I edit a module and then i try run this command code:

php -dmemory_limit=5G -f bin/magento setup:upgrade 

But i after done that site and back-end theme disappear so i have to run this command always:

php -dmemory_limit=5G -f bin/magento setup:static-content:deploy -f

Is it possible to prevent the site from falling down after upgrading a module?

CodePudding user response:

Switch to developer mode in your local repo

bin/magento deploy:mode:set developer

CodePudding user response:

This is how it's meant to work (production mode).

The module you enable is likely to contain it's own templates, layouts, static content etc. The second command is how magento gathers the static content from all modules so they are actually usable on the front-end website.

  • Related