diff --git a/.gitignore b/.gitignore index 45734458bd..12ca103c29 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 bc69bd9f03..bb95597bad 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 80565e73d9..d8722a6f61 100644 --- a/app/components/AppFooter.vue +++ b/app/components/AppFooter.vue @@ -15,11 +15,11 @@ const isHome = computed(() => route.name === 'index')