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.
Install with composer:
composer require freshheads/webpack-bundle
// config/bundles.php
return [
// ...
FH\Bundle\WebpackBundle\FHWebpackBundle::class => [ 'all' => true ]
];
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%/public'
<link rel="stylesheet" href="{{ webpack_asset('assets/frontend/build', 'app', 'css') }}" />
<script type="text/javascript" src="{{ webpack_asset('assets/frontend/build', 'app', 'js') }}"></script>
<style type="text/css">
{{ webpack_asset_contents('assets/frontend/build', 'email', 'css')|raw }}
</style>
This library works with PHP version 8.1 and up.