diff --git a/landing/vite.config.ts b/landing/vite.config.ts index f022561..3b96358 100644 --- a/landing/vite.config.ts +++ b/landing/vite.config.ts @@ -13,7 +13,8 @@ export default defineConfig({ ], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), + '@harb/ui-shared': fileURLToPath(new URL('../packages/ui-shared/src', import.meta.url)), }, }, server: { diff --git a/web-app/vite.config.ts b/web-app/vite.config.ts index 54e429a..6c14c8a 100644 --- a/web-app/vite.config.ts +++ b/web-app/vite.config.ts @@ -31,6 +31,7 @@ export default defineConfig(() => { alias: { '@': path.resolve(process.cwd(), 'src'), 'kraiken-lib': path.resolve(process.cwd(), '../kraiken-lib/src'), + '@harb/ui-shared': path.resolve(process.cwd(), '../packages/ui-shared/src'), }, }, server: {