20 lines
583 B
PHP
20 lines
583 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$containerConfigurator->extension('webpack_encore', [
|
|
'output_path' => '%kernel.project_dir%/public/build',
|
|
'script_attributes' => [
|
|
'defer' => true,
|
|
],
|
|
]);
|
|
|
|
$containerConfigurator->extension('framework', [
|
|
'assets' => [
|
|
'json_manifest_path' => '%kernel.project_dir%/public/build/manifest.json',
|
|
],
|
|
]);
|
|
};
|