forked from dedicatedcloud/gradus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
62 lines (61 loc) · 1.15 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
// https://nuxt.com/docs/api/configuration/nuxt-config
import vuetify, { transformAssetUrls } from "vite-plugin-vuetify";
export default defineNuxtConfig({
ssr: true,
build: {
transpile: ["vuetify"],
},
devtools: { enabled: false },
modules: [
"@nuxt/content",
(_options, nuxt) => {
nuxt.hooks.hook("vite:extendConfig", (config) => {
// @ts-expect-error
config.plugins.push(vuetify({ autoImport: true }));
});
},
"nuxt-gtag",
"@nuxt/image",
//...
],
vite: {
vue: {
template: {
transformAssetUrls,
},
},
},
content: {
documentDriven: true,
experimental: {
clientDb: true,
search: {
fields: ["title", "description", "tags"],
},
},
highlight: {
theme: "light-plus",
},
markdown: {
anchorLinks: {
depth: 0,
},
// tags: {
// p: 'MyCustomParagraph'
// }
},
},
extends: "@nuxt-themes/typography",
nitro: {
prerender: {
crawlLinks: true,
failOnError: false,
},
// firebase: {
// gen: 2
// }
},
gtag: {
id: "G-JC8BJZ2R1G",
},
});