From 6aa680af5a3ca20f8013b449875de2ed2968f1a1 Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Thu, 1 May 2025 04:29:03 +0200 Subject: [PATCH] feat: add nuxt configs --- app.config.ts | 3 +++ nuxt.config.ts | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 app.config.ts create mode 100644 nuxt.config.ts diff --git a/app.config.ts b/app.config.ts new file mode 100644 index 0000000..204b080 --- /dev/null +++ b/app.config.ts @@ -0,0 +1,3 @@ +export default defineAppConfig({ + gorbClientBaseURL: "localhost:3000" +}) \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts new file mode 100644 index 0000000..c27a274 --- /dev/null +++ b/nuxt.config.ts @@ -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'] +}) \ No newline at end of file