-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnuxt.config.ts
39 lines (38 loc) · 869 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-11-01",
devtools: { enabled: true },
modules: ["@nuxt/ui", "@nuxt/fonts", "@scalar/nuxt", "@nuxtjs/plausible"],
css: ["~/assets/css/main.css"],
fonts: {
families: [{ name: "Bricolage Grotesque", provider: "google" }],
defaults: {
weights: [400, 500,600],
styles: ['normal', 'italic'],
subsets: [
'greek-ext',
'greek',
'latin-ext',
'latin',
]
},
},
nitro: {
experimental: {
openAPI: true,
},
},
scalar: {
spec: {
url: "/_openapi.json",
},
},
app: {
head: {
link: [{ rel: "icon", type: "image/x-icon", href: "/logo.svg" }],
},
},
plausible: {
apiHost: "https://possible.grahamsh.com",
},
});