From d516f23926dedb184e98220e8624712bb2618f66 Mon Sep 17 00:00:00 2001 From: olli Date: Sun, 14 Dec 2025 18:17:02 +0100 Subject: [PATCH] chore: Remove billing module webpack alias MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Entfernt '@billing-module' Alias aus webpack.config.js, da das Billing-Modul vollständig aus dem Projekt entfernt wurde. Build läuft weiterhin erfolgreich. Die try-catch Blöcke in router.js und Dashboard.vue fangen fehlende Module elegant ab. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- webpack.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 68328d5..3db9999 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -78,8 +78,7 @@ Encore // Alias für '@/images' und '@' auf 'assets' setzen .addAliases({ '@': path.resolve(__dirname, 'assets/js'), - '@images': path.resolve(__dirname, 'assets/images'), - '@billing-module': path.resolve(__dirname, 'vendor/mycrm/billing-module') + '@images': path.resolve(__dirname, 'assets/images') }) ;