From c37e9c40c0fbd60ccf6eea142f5d971dacf79e2d Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Tue, 18 Nov 2025 18:46:57 +0100 Subject: [PATCH 1/2] fix: update asset folder path in WebauthnStimulusBundle configuration --- src/stimulus/src/WebauthnStimulusBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stimulus/src/WebauthnStimulusBundle.php b/src/stimulus/src/WebauthnStimulusBundle.php index 874e0115..2da9cd94 100644 --- a/src/stimulus/src/WebauthnStimulusBundle.php +++ b/src/stimulus/src/WebauthnStimulusBundle.php @@ -20,7 +20,7 @@ public function prependExtension(ContainerConfigurator $container, ContainerBuil $builder->prependExtensionConfig('framework', [ 'asset_mapper' => [ 'paths' => [ - __DIR__ . '/../assets/dist' => '@web-auth/webauthn-stimulus', + __DIR__ . '/../assets/src' => '@web-auth/webauthn-stimulus', ], ], ]); From 2a74094cb9caa62ce6a995333337b379ae3e7538 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Tue, 18 Nov 2025 18:48:38 +0100 Subject: [PATCH 2/2] fix: update asset folder path in WebauthnStimulusBundle configuration --- src/stimulus/src/WebauthnStimulusBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stimulus/src/WebauthnStimulusBundle.php b/src/stimulus/src/WebauthnStimulusBundle.php index 2da9cd94..e5fe2baf 100644 --- a/src/stimulus/src/WebauthnStimulusBundle.php +++ b/src/stimulus/src/WebauthnStimulusBundle.php @@ -20,7 +20,7 @@ public function prependExtension(ContainerConfigurator $container, ContainerBuil $builder->prependExtensionConfig('framework', [ 'asset_mapper' => [ 'paths' => [ - __DIR__ . '/../assets/src' => '@web-auth/webauthn-stimulus', + dirname(__DIR__) . '/assets/src' => '@web-auth/webauthn-stimulus', ], ], ]);