// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ compatibilityDate: '2025-07-15', devtools: { enabled: true }, runtimeConfig: { public: { baseUrl: process.env.NUXT_PUBLIC_BASE_URL } }, css: [ '@/assets/style.css' ], app: { head: { link: [ { rel: 'icon', type: 'image/x-icon', href: '/logo.ico' } ] } } })