feat: Restore billing module webpack alias for re-installed module

Änderungen:
- @billing-module webpack alias wieder hinzugefügt
- Assets aus Billing-Modul Repository nach vendor/ kopiert
- Frontend baut jetzt erfolgreich ohne Warnungen

Hintergrund:
Nach dem Entfernen des Billing-Moduls wurde der Alias gelöscht.
Bei der Neu-Installation muss dieser wieder vorhanden sein, damit
die dynamischen Imports in router.js und Dashboard.vue funktionieren.

Assets-Synchronisierung:
Die Frontend-Assets des Billing-Moduls müssen manuell von
/Users/olli/Git/__privat/mycrm-billing-module/assets nach
vendor/mycrm/billing-module/assets kopiert werden, da Composer
nur PHP-Code automatisch synchronisiert.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
olli 2025-12-14 18:33:34 +01:00
parent d516f23926
commit c38801b922

View File

@ -78,7 +78,8 @@ Encore
// Alias für '@/images' und '@' auf 'assets' setzen // Alias für '@/images' und '@' auf 'assets' setzen
.addAliases({ .addAliases({
'@': path.resolve(__dirname, 'assets/js'), '@': path.resolve(__dirname, 'assets/js'),
'@images': path.resolve(__dirname, 'assets/images') '@images': path.resolve(__dirname, 'assets/images'),
'@billing-module': path.resolve(__dirname, 'vendor/mycrm/billing-module')
}) })
; ;