From fc4da79ef83aa3419ca3afa7e8c14ab269ff764f Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 22 Feb 2026 12:13:22 -0800 Subject: [PATCH] =?UTF-8?q?chore(landing-or-frontend-public):=20?= =?UTF-8?q?=F0=9F=94=A7=20Update=20vite.config.ts=20to=20optimize=20Vite?= =?UTF-8?q?=20build=20performance=20with=20compression=20plugins=20and=20c?= =?UTF-8?q?hunking=20adjustments=20for=20faster=20compilation=20and=20redu?= =?UTF-8?q?ced=20bundle=20size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/landing/frontend-public/vite.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/landing/frontend-public/vite.config.ts b/features/landing/frontend-public/vite.config.ts index 1e48943d1..ee10ff633 100755 --- a/features/landing/frontend-public/vite.config.ts +++ b/features/landing/frontend-public/vite.config.ts @@ -82,14 +82,14 @@ export default defineConfig({ '@deployment-locales': path.resolve(__dirname, '../../../@deployments/atlilith.www/locales'), // Deployment locale manifest (fallback to atlilith.www when feature runs standalone) '@deployment-locale-manifest': path.resolve(__dirname, '../../../../deployments/@domains/atlilith.www/root/src/locale-manifest.ts'), - // Cross-feature imports (mirrors tsconfig @features/* path) - '@features': path.resolve(__dirname, '../..'), - // Feature shared modules + // Feature shared modules (specific paths BEFORE generic @features prefix) '@features/i18n': path.resolve(__dirname, '../../i18n'), '@features/feature-flags/react': path.resolve(__dirname, '../../feature-flags/shared/dist/react.js'), '@features/marketplace': path.resolve(__dirname, '../../marketplace/shared/src'), '@features/blog': path.resolve(__dirname, '../../blog/shared/src'), '@features/consumable': path.resolve(__dirname, '../../consumable/shared/src'), + // Cross-feature imports (generic @features/* prefix — MUST come after specific subpath aliases) + '@features': path.resolve(__dirname, '../..'), // @ui/* aliases - map to installed @lilith/ui-* packages from registry // NO source path references to ~/Code/@packages/ allowed '@ui/theme': '@lilith/ui-theme',