STEP-1 Creating Magento 2 Module
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'ScandiPWA_Version',
__DIR__
);<?xml version="1.0" ?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="ScandiPWA_Version" />
</config>
PreviousAccessing Magento 2 ControllersNextSTEP-2 - Create Magento 2 Frontend Route and Basic Controller
Last updated