feat: init
This commit is contained in:
34
nuxt.config.ts
Normal file
34
nuxt.config.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
// 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: '',
|
||||
},
|
||||
|
||||
app: {
|
||||
head: {
|
||||
htmlAttrs: { lang: 'en' },
|
||||
link: [
|
||||
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
||||
],
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user