-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
74 lines (66 loc) · 1.32 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: false },
app: {
head: {
title: "Philip Narteh - Software Engineer",
meta: [
// objects for SEO type stuff
// {}
],
link: [
// {rel:"stylesheet" href:"get font and icons link from Google fonts"}
],
},
},
css: ["bootstrap-icons/font/bootstrap-icons.css", "~/assets/css/main.css"],
modules: [
"@nuxtjs/tailwindcss",
"@nuxt/content",
"nuxt-gtag",
"@nuxtjs/color-mode",
],
content: {
markdown: {
anchorLinks: false,
},
highlight: {
theme: "github-dark", // or 'dracula', 'nord', 'material-palenight'
langs: [
"json",
"js",
"ts",
"html",
"css",
"vue",
"sh",
"mdc",
"md",
"yaml",
"python",
"sql",
],
},
},
components: [
{
path: "~/components",
},
],
tailwindcss: {
cssPath: "~/assets/css/tailwind.css",
configPath: "tailwind.config",
config: {
plugins: [require("@tailwindcss/typography")],
},
},
gtag: {
id: "G-BCZF1LTT3V",
},
colorMode: {
preference: 'system',
fallback: 'light',
classSuffix: ''
},
compatibilityDate: "2025-02-09",
});