fix: Post-purchase holder dashboard on landing page (#150)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
e2ba5c7b62
commit
af10dcf4c6
4 changed files with 2 additions and 17 deletions
|
|
@ -205,19 +205,6 @@ services:
|
|||
echo "@harb/web3 linked with wagmi/viem deps"
|
||||
fi
|
||||
|
||||
# Overlay @harb/ui-shared shared package from workspace
|
||||
if [ -d "$WS/packages/ui-shared" ]; then
|
||||
mkdir -p /app/packages/ui-shared
|
||||
cp -r "$WS/packages/ui-shared/." /app/packages/ui-shared/
|
||||
# Link @harb/ui-shared into web-app node_modules
|
||||
mkdir -p /app/web-app/node_modules/@harb
|
||||
ln -sf /app/packages/ui-shared /app/web-app/node_modules/@harb/ui-shared
|
||||
# Symlink vue into packages dir so @harb/ui-shared can resolve it
|
||||
mkdir -p /app/packages/ui-shared/node_modules
|
||||
ln -sf /app/web-app/node_modules/vue /app/packages/ui-shared/node_modules/vue
|
||||
echo "@harb/ui-shared linked with vue dep"
|
||||
fi
|
||||
|
||||
echo "=== Starting webapp (pre-built image + source overlay) ==="
|
||||
cd /app/web-app
|
||||
# Explicitly set CI=true to disable Vue DevTools in vite.config.ts
|
||||
|
|
|
|||
|
|
@ -33,8 +33,7 @@
|
|||
"vue-router": "^4.2.5",
|
||||
"vue-tippy": "^6.6.0",
|
||||
"vue-toastification": "^2.0.0-rc.5",
|
||||
"@harb/web3": "*",
|
||||
"@harb/ui-shared": "*"
|
||||
"@harb/web3": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@iconify/vue": "^4.3.0",
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@
|
|||
import { computed, ref } from 'vue';
|
||||
import { useRoute, RouterLink } from 'vue-router';
|
||||
import { useWalletDashboard } from '@/composables/useWalletDashboard';
|
||||
import { TransactionHistory } from '@harb/ui-shared';
|
||||
import TransactionHistory from '@/components/TransactionHistory.vue';
|
||||
|
||||
const route = useRoute();
|
||||
const addressParam = computed(() => String(route.params.address ?? ''));
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ 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: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue