chore: update dependencies and Nuxt site config

This commit is contained in:
SauceyRed 2025-05-01 22:31:58 +02:00
parent a7d6741d64
commit 8b719a9a63
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
4 changed files with 643 additions and 46 deletions

View file

@ -2,5 +2,18 @@
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
modules: ['@nuxt/eslint']
modules: ['@nuxt/eslint', '@nuxt/image', "@pinia/nuxt"],
app: {
/*
Defines what prefix the client runs on
E.g.: baseURL set to "/web" would host at https://gorb.app/web
Default is "/" (aka root), which hosts at https://gorb.app/
*/
baseURL: "/",
},
runtimeConfig: {
public: {
apiVersion: 1
}
}
})