-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
41 lines (41 loc) · 909 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
36
37
38
39
40
41
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
app: {
pageTransition: { name: "page", mode: "out-in" },
head: {
htmlAttrs: {
lang: "en",
},
},
},
modules: [
"@nuxt/content",
"@nuxtjs/tailwindcss",
"@vueuse/nuxt",
"@nuxtjs/google-fonts",
],
content: {
documentDriven: true,
highlight: {
theme: "one-dark-pro",
},
},
appConfig: {
public: {
NUXT_PUBLIC_GTAG_ID: process.env.NUXT_PUBLIC_GTAG_ID,
},
},
googleFonts: {
families: {
Roboto: true,
Dosis: true,
Outfit: true,
},
},
nitro: {
prerender: {
routes: ["/sitemap.xml", "/rss.xml"],
},
},
css: ['~/assets/css/global.css']
});