Skip to content

Commit

Permalink
Disable type checks in the hybrid search component until we can fix w…
Browse files Browse the repository at this point in the history
…hatever vite config is causing the issue.
  • Loading branch information
mosen committed Jan 11, 2024
1 parent f21b431 commit f64c6e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions resources/js/Hybrid/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
faSearch,
faTimesCircle
} from '@fortawesome/free-solid-svg-icons'
// @ts-ignore
import ModelIcon from '@/Components/ModelIcon.vue'
const search: Ref<null | string> = ref(null);
Expand Down
3 changes: 2 additions & 1 deletion resources/js/app-hybrid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@ const createHybridApp = (options) => {
return app
}

import Search from '@/Hybrid/Search.vue'
// @ts-ignore
import Search from './Hybrid/Search.vue'
createHybridApp(Search).mount('#search')

0 comments on commit f64c6e4

Please sign in to comment.