// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
ssr: false,
devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss', '@nuxtjs/google-fonts', "@nuxt/ui"],
googleFonts: {
families: {
"Gothic A1": {
wght: [100, 200, 300, 400, 500, 600, 700, 800, 900],
regular: true,
},
},
},
tailwindcss: {
exposeConfig: true,
config: {
theme: {
fontFamily: {
"sans": ["Gothic A1", "sans-serif"],
},
extend: {
dropShadow: {
brutal: "5px 5px 0px black"
}
}
}
}
},
})
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
ssr: false,
devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss', '@nuxtjs/google-fonts', "@nuxt/ui"],
googleFonts: {
families: {
"Gothic A1": {
wght: [100, 200, 300, 400, 500, 600, 700, 800, 900],
regular: true,
},
},
},
tailwindcss: {
exposeConfig: true,
config: {
theme: {
fontFamily: {
"sans": ["Gothic A1", "sans-serif"],
},
extend: {
dropShadow: {
brutal: "5px 5px 0px black"
}
}
}
}
},
})