-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathnuxt.config.ts
28 lines (28 loc) · 992 Bytes
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
components: true,
app: {
head: {
htmlAttrs: {
lang: 'en',
},
link: [
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{
rel: 'preconnect',
href: 'https://fonts.gstatic.com',
crossorigin: 'anonymous',
},
{
href: 'https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Space+Grotesk:wght@300..700&display=swap',
rel: 'stylesheet',
},
],
},
},
css: ['~/assets/styles/main.scss', 'swiper/css'],
modules: ['@nuxtjs/tailwindcss', 'nuxt-svgo', 'nuxt-swiper'],
plugins: ['~/plugins/click-outside'],
});