Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated teams page #267

Closed
wants to merge 20 commits into from
Closed
Changes from 3 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6fe1a3e
a rewrite of auto and teleop to adapt to the new game, unfinished
PrestonSwigart Jan 7, 2025
736bfdc
i was on the wrong branch my bad guys
PrestonSwigart Jan 7, 2025
bdab1f9
Merge pull request #244 from DurhamAcademy/204-fix-cookie-on-dashboard
PrestonSwigart Jan 7, 2025
6f0ec36
Edited the Endgame page -- now has necessary buttons for this year:
kmholladay Jan 7, 2025
e753bc0
Merge pull request #246 from DurhamAcademy/203-improve-prediction-page
PrestonSwigart Jan 7, 2025
c2f8659
Merge pull request #247 from DurhamAcademy/239-front-end-scout-page-u…
PrestonSwigart Jan 7, 2025
81578ba
finished scout page update i hope
PrestonSwigart Jan 7, 2025
2f19a08
finished scout page update i hope
PrestonSwigart Jan 7, 2025
5ea864f
Merge pull request #248 from DurhamAcademy/239-front-end-scout-page-u…
PrestonSwigart Jan 7, 2025
ee11eef
Edited the Matches page -- now has necessary categories for this year
kmholladay Jan 7, 2025
5670dcd
Merge pull request #249 from DurhamAcademy/245-edit-matches-page-for-…
Ryan-Bauroth Jan 7, 2025
5018270
Ryan isnt a very nice person, in fact, hes such a mean person that he…
marcogullotto Jan 8, 2025
236b7a5
Merge remote-tracking branch 'origin/testing' into 250-fix-users-scro…
marcogullotto Jan 9, 2025
a459e02
Merge pull request #255 from DurhamAcademy/250-fix-users-scrolling
marcogullotto Jan 9, 2025
3488b5c
hi
nataliemcwhorter Jan 9, 2025
0e7df89
Merge remote-tracking branch 'origin/testing' into testing
nataliemcwhorter Jan 9, 2025
56b32f1
Merge pull request #257 from DurhamAcademy/production
Ryan-Bauroth Jan 10, 2025
127b6fd
Merge remote-tracking branch 'origin/testing' into testing
nataliemcwhorter Jan 10, 2025
a879646
updated teams page
nataliemcwhorter Jan 13, 2025
c255def
fixed bug
nataliemcwhorter Jan 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/website-utils/OuterComponents.vue
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ if (
class="vis min-h-screen h-screen max-w-full"
>
<UCard
class="h-full"
class="h-full fixed w-[20em]"
:ui="{ rounded: 'rounded-none' }"
>
<UVerticalNavigation :links="links" />
19 changes: 18 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ export default defineNuxtConfig({
})
},
],

webpack: {
aggressiveCodeRemoval: true,
optimization: {
@@ -29,6 +30,7 @@ export default defineNuxtConfig({
}
},
},

nitro: {
preset: 'bun',
compressPublicAssets: {
@@ -37,6 +39,7 @@ export default defineNuxtConfig({
},

},

app: {
head: {
script: [
@@ -46,10 +49,12 @@ export default defineNuxtConfig({
]
}
},

build: {
transpile: ['vuetify'],

},

// speedkit: {
//
// detection: {
@@ -101,6 +106,7 @@ export default defineNuxtConfig({
vimeo: 'https://i.vimeocdn.com',
}
},

// buildModules: [
// 'nuxt-speedkit',
// '@nuxtjs/pwa'
@@ -154,25 +160,31 @@ export default defineNuxtConfig({
type: 'module',
},
},

plugins: [
'~/plugins/vuetify.ts'
],

devtools: {
enabled: true,

timeline: {
enabled: true
}
},

ssr: false,

vite: {
vue: {
template: {
transformAssetUrls,
}
}
},

logLevel: "verbose",

runtimeConfig:{
tbaKey: process.env.NUXT_TBA_KEY,
couchDB: {
@@ -183,13 +195,16 @@ export default defineNuxtConfig({
}
}
},

sourcemap: {
server: true,
client: true
},

colorMode: {
preference: 'light' //eventually we will add color mode preference
},

tailwindcss:{
config:{
theme: {
@@ -215,5 +230,7 @@ export default defineNuxtConfig({
}
}
}
}
},

compatibilityDate: '2025-01-08'
})