-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
49 lines (47 loc) · 1.22 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
// https://nuxt.com/docs/api/configuration/nuxt-config
import vuetify from 'vite-plugin-vuetify';
export default defineNuxtConfig({
devtools: { enabled: false },
ssr: true,
modules: [
'@vueuse/nuxt',
'@nuxt/content',
async (options, nuxt) => {
nuxt.hooks.hook("vite:extendConfig", (config) =>
// @ts-ignore
config.plugins.push(vuetify())
);
},
['@nuxtjs/google-fonts', {
families: {
'Josefin+Sans': true,
'Play': true,
},
preload: true,
}],
],
app: {
head: {
script: [
{
src: "https://plausible.lostgeek.de/js/script.js",
defer: true,
'data-domain': "crow.lostgeek.de",
},
],
},
},
css: [
// SCSS file in the project
"vuetify/styles",
"~/assets/style/main.scss",
'@mdi/font/css/materialdesignicons.css',
],
build: {
transpile: ["vuetify"],
},
content: {
documentDriven: true,
contentHead: false,
},
})