Skip to content

Commit 54c1c85

Browse files
committed
chore: try pure nuxt
1 parent d2922d2 commit 54c1c85

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/app.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import hexRgb from 'hex-rgb'
33
4-
const { data: clusters, refresh, status } = useFetch('/api/clusters/nitrojs/nitro', {
4+
const { data: clusters, refresh, status } = useFetch('/api/clusters/nuxt/nuxt', {
55
server: false,
66
immediate: import.meta.client && !('startViewTransition' in document),
77
default: () => [],
@@ -51,7 +51,7 @@ async function updateSearch() {}
5151
</p>
5252
</nav>
5353
<p class="flex gap-2 items-center">
54-
nitrojs/nitro
54+
nuxt/nuxt
5555
<button
5656
class="rounded-full w-7 h-7 flex place-items-center border-solid border border-gray-700 bg-transparent color-gray-400 py-2 hover:color-gray-200 active:color-white focus:color-gray-200 hover:border-gray-400 active:border-white focus:border-gray-400 transition-colors"
5757
:class="{ 'animate-spin opacity-50 pointer-events-none': status === 'pending' || status === 'idle' }"

server/api/clusters/[...repo].ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { getEmbeddingsForIssue } from '../../utils/embeddings'
44
const linkedRepos: Record<string, string[]> = {
55
'danielroe/beasties': ['GoogleChromeLabs/critters'],
66
'nitrojs/nitro': ['unjs/h3', 'unjs/c12', 'unjs/unenv', 'unjs/ofetch'],
7-
'nuxt/nuxt': ['vuejs/core', 'vitejs/vite', 'nitrojs/nitro'],
7+
// 'nuxt/nuxt': ['vuejs/core', 'vitejs/vite', 'nitrojs/nitro'],
88
}
99

1010
const allowedRepos = ['nuxt/nuxt', 'vuejs/core', 'vitejs/vite', 'nitrojs/nitro', 'danielroe/beasties', 'unjs/h3', 'unjs/c12', 'unjs/unenv', 'unjs/ofetch']

0 commit comments

Comments
 (0)