feat: add nuxt configs

This commit is contained in:
SauceyRed 2025-05-01 04:29:03 +02:00
parent 7fddd9387b
commit 6aa680af5a
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
2 changed files with 9 additions and 0 deletions

3
app.config.ts Normal file
View file

@ -0,0 +1,3 @@
export default defineAppConfig({
gorbClientBaseURL: "localhost:3000"
})

6
nuxt.config.ts Normal file
View file

@ -0,0 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
modules: ['@nuxt/fonts', '@nuxt/image']
})