import { defineNuxtConfig } from 'nuxt' export default defineNuxtConfig({ ssr: false, app: { head: { title: 'gob-alert', link: [ { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap', }, ], }, }, runtimeConfig: { public: { apiBase: process.env.API_URL || 'http://localhost:3000' } } })