Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 783 Bytes

installation.md

File metadata and controls

35 lines (28 loc) · 783 Bytes

Installation

To install the bundle, the recommended way is using Composer:

composer require spomky-labs/pwa-bundle

No Flex recipe exists for this bundle, but you can create a configuration file that will be modified as you progress in the integration of the features.

{% code title="/config/packages/pwa.yaml" lineNumbers="true" %}

pwa: ~

{% endcode %}

The integration in your application is very simple. You are only required to add a Twig function inside the end of the <head> tag of your HTML pages.

{% code lineNumbers="true" %}

<!DOCTYPE html>
<html lang="en">
<head>
  {{ pwa() }}
</head>
<body>
  ...
</body>
</html>

{% endcode %}

{% hint style="info" %} You may need to clear the cache after the bundle is installed {% endhint %}