forked from jephtah/GetDriva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
35 lines (35 loc) · 1020 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
29
30
31
32
33
34
35
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: "GetDriva",
meta: [
{
name: "description",
content: "GetDriva provides you with trusted and reliable drivers to get you to your destination with ease",
},
],
link: [
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
{ rel: "preconnect", href: "https://fonts.gstatic.com", crossorigin: "" },
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap",
},
],
},
pageTransition: {
name: 'page',
mode: 'out-in' // default
},
},
components: {
dirs: ["~/components"],
},
// @ts-ignore
modules: ["@nuxtjs/tailwindcss", "nuxt-svgo", "@nuxt/image-edge", "nuxt-swiper"],
tailwindcss: {
exposeConfig: true,
// exposeLevel: 1, // determines tree-shaking (optional)
},
})