freshheads/webpack-bundle

A Symfony bundle to create paths to webpack assets in your Twig templates.

Installs: 56 998

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 8

Forks: 7

Open Issues: 2

Type:symfony-bundle

2.0.1 2022-10-18 09:07 UTC

This package is auto-updated.

Last update: 2024-03-30 14:21:32 UTC


README

Build Status

A Symfony bundle to create paths to webpack assets in your Twig templates. This bundle uses the webpack statistics file to find the newest assets for a given webpack entry.

Installation

Install with composer:

composer require freshheads/webpack-bundle

Register the bundle

// config/bundles.php
return [
    // ...
    FH\Bundle\WebpackBundle\FHWebpackBundle::class => [ 'all' => true ]
];

Configuration

All configuration options, with default values:

fh_webpack:
    stats_filename: stats.json
    # web/document root, assets will be referenced from this path
    web_dir: '%kernel.project_dir%/web'

Usage

Link webpack files

<link rel="stylesheet" href="{{ webpack_asset('assets/frontend/build', 'app', 'css') }}" />
<script type="text/javascript" src="{{ webpack_asset('assets/frontend/build', 'app', 'js') }}"></script>

Dump the contents of a webpack file

<style type="text/css">
    {{ webpack_asset_contents('assets/frontend/build', 'email', 'css')|raw }}
</style>

Requirements

This library works with PHP 7.4 and up.