Lark - Going Live
-
Fonts loading in correctly?
web/app/themes/lark-child/resources/assets/scripts/app.js
-
Have all assets been compiled for production
yarn build:production
? -
All favicons been changed correctly using: http://www.favicon-generator.org/
-
Have all contact forms been tested/ensure Mailgun is working
-
Have you checked purgecss ignore rule?
/* purgecss start ignore */
@tailwind base;
@tailwind components;
/* purgecss end ignore */
@tailwind utilities;
-
Compare plugins with
composer.json
file- Look at the list of installed plugins within the
web/app/plugins
directory - Compare the installed plugins with the
composer.json
file - Any missing plugins in the
composer.json
file, please update. You can do this by searching the WordPress plugins on https://wpackagist.org/ - Please then commit the updated
composer.json
file
- Look at the list of installed plugins within the
-
Enable or disable the adding of plugins on live:
- Disable plugins on live:
Config::define(‘DISALLOW_FILE_MODS’, true);
- Add plugins on live
Config::define(‘DISALLOW_FILE_MODS’, false);
- Found within:
config/environments/production.php
- Disable plugins on live: