diff --git a/.gitignore b/.gitignore index 45734458b..12ca103c2 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,6 @@ test-results/ # generated files shared/types/lexicons + +# output +.vercel diff --git a/app/app.vue b/app/app.vue index bc69bd9f0..bb95597ba 100644 --- a/app/app.vue +++ b/app/app.vue @@ -62,7 +62,7 @@ onKeyDown( return } - router.push('/search') + router.push({ name: 'search' }) }, { dedupe: true }, ) diff --git a/app/components/AppFooter.vue b/app/components/AppFooter.vue index 80565e73d..d8722a6f6 100644 --- a/app/components/AppFooter.vue +++ b/app/components/AppFooter.vue @@ -15,11 +15,11 @@ const isHome = computed(() => route.name === 'index')