38 lines
711 B
TypeScript
38 lines
711 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
|
|
modules: [
|
|
'@nuxtjs/tailwindcss',
|
|
'@nuxtjs/google-fonts',
|
|
],
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
googleFonts: {
|
|
families: {
|
|
'DM Sans': [400, 500, 600, 700],
|
|
'DM Mono': [400, 500],
|
|
'Instrument Sans': [400, 500, 600, 700],
|
|
},
|
|
display: 'swap',
|
|
},
|
|
|
|
runtimeConfig: {
|
|
vatstackApiKey: '',
|
|
db: '',
|
|
redisUrl: '',
|
|
adminPassword: '',
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
htmlAttrs: { lang: 'en' },
|
|
link: [
|
|
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
|
],
|
|
},
|
|
},
|
|
})
|