first commit

This commit is contained in:
alexandrump
2026-02-09 01:02:53 +01:00
commit 82f3464565
90 changed files with 4788 additions and 0 deletions

21
apps/web/nuxt.config.ts Normal file
View File

@@ -0,0 +1,21 @@
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'
}
}
})