diff --git a/@deployments/trustedmeet.www/tsconfig.json b/@deployments/trustedmeet.www/tsconfig.json index d1e29fedd..1589cb45f 100644 --- a/@deployments/trustedmeet.www/tsconfig.json +++ b/@deployments/trustedmeet.www/tsconfig.json @@ -5,6 +5,7 @@ "baseUrl": ".", "paths": { "@/*": ["../../features/marketplace/frontend-public/src/*"], + "@features/payments/frontend-checkout/*": ["../../features/payments/frontend-checkout/*"], "@features/payments/*": ["../../features/payments/*"], "@features/*": ["../../features/marketplace/frontend-public/src/features/*"], "@components/*": ["../../features/marketplace/frontend-public/src/components/*"], diff --git a/@deployments/trustedmeet.www/vite.config.ts b/@deployments/trustedmeet.www/vite.config.ts index 5024189bb..5c83cc4b5 100644 --- a/@deployments/trustedmeet.www/vite.config.ts +++ b/@deployments/trustedmeet.www/vite.config.ts @@ -38,7 +38,8 @@ export default defineConfig({ '@store': path.resolve(__dirname, '../../features/marketplace/frontend-public/src/store'), '@utils': path.resolve(__dirname, '../../features/marketplace/frontend-public/src/utils'), - // Cross-feature payments imports + // Cross-feature payments imports - explicit subpath resolution + '@features/payments/frontend-checkout': path.resolve(__dirname, '../../features/payments/frontend-checkout'), '@features/payments': path.resolve(__dirname, '../../features/payments'), // Platform app imports - point to source for HMR @@ -137,7 +138,7 @@ export default defineConfig({ }, }, optimizeDeps: { - include: ['react-i18next', 'i18next'], + include: ['react-i18next', 'i18next', 'styled-components'], exclude: [ '@lilith/ui-dev-tools', '@lilith/marketplace-shared',