Magento/luma
themeMagento/blank
themeOr: Any theme that is based on XML layout, PHTML templates, Block classes, LESS-based CSS, RequireJS, KnockoutJS, jQuery and the rest of the blob
So how does this perform?
cacheable=true
So how does this perform?
And it is old
And it is old
And it is old
Bad:
define([
'jquery',
'jquery/ui'
], function() { ... });
Good:
define([
'jquery',
'jquery-ui-modules/datepicker'
], function() { ... });
See lib/web/jquery/compat.js
And LESS is old
calendar.css
and othersdata-mage-init
and x-magento-init
with require()
Note that this is all experimental
Layout file default.xml
:
<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<remove src='mage/calendar.css'/>
<remove src='mage/gallery/gallery.css'/>
</head>
</page>
File requirejs-config.js
var config = {
paths: {
//'knockoutjs/knockout-fast-foreach': 'js/zero',
//'knockoutjs/knockout-es5': 'js/zero',
'mage/calendar': 'js/zero',
'Magento_Ui/js/grid/filters/range': 'js/zero',
'mage/polyfill': 'js/zero',
//'mage/menu': 'js/zero',
'mage/translate-inline': 'js/zero',
'Magento_Captcha/js/model/captcha': 'js/zero',
//'jquery/jquery-migrate': 'js/zero',
//'Magento_Ui/js/lib/logger/logger': 'js/zero',
//'Magento_Ui/js/lib/logger/formatter': 'js/zero',
//'Magento_Ui/js/lib/logger/console-logger': 'js/zero',
}
};
composer require creativestyle/magesuite-magepack
bin/magento module:enable MageSuite_Magepack
bin/magento setup:upgrade
bin/magento config:set dev/js/enable_magepack_js_bundling 1
npm install -g magepack
magepack generate --cms-url="http://magento.local" --category-url="http://magento.local/women/" --product-url="http://magento.local/training/hyva"
magepack bundle
Refer to magesuite/magepack
composer require yireo/magento2-webp2
bin/magento module:enable Yireo_Webp2 Yireo_NextGenImages
bin/magento setup:upgrade
bin/magento config:set yireo_webp2/settings/enabled 1
What is Swissup Breeze? And how does it work?
It's an alternative JavaScript frontend for Magento 2 that boosts the default Luma theme performance by replacing all scripts with simplified and/or updated versions
Run the following commands
composer require swissup/module-marketplace
bin/magento setup:upgrade
bin/magento marketplace:channel:enable swissuplabs
composer require swissup/breeze
bin/magento module:enable Swissup_Breeze
Next, navigate to your theme configuration and enable Breeze
Replaces “old” Magento scripts, with simplified and updated versions
Library replacements & additions:
See http://docs.swissuplabs.com/m2/extensions/breeze/devdocs/js-stack/
Removing pointless CSS
mage/calendar.css
mage/gallery/gallery.css
Replaces numerous Magento JS core scripts
view/frontend/layout/breeze_default.xml
You need to make your theme and extensions “Breeze-friendly”. Since the Breeze replaces javascript code with its own version, you will need to write separate Breeze-compatible version of your javascript code.
See http://docs.swissuplabs.com/m2/extensions/breeze/devdocs/
A nice alternative to update the Luma stack with newer and faster scripts, making the Magento 2 front-end faster, but…
Next to your theme, you need to change and administer your extensions to be Breeze compatible. It’s a good option if you don't have to many 3rd party extensions.
And contemplate on what is next in the future