-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
57 lines (57 loc) · 1.43 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {
head: {
htmlAttrs: {
"data-theme": "nord",
},
link: [{
rel: "stylesheet",
href:
"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200",
}],
},
},
css: ["~/assets/css/main.scss"],
supabase: {
redirect: true,
redirectOptions: {
login: "/login",
callback: "/confirmLogin",
include: ["/profile(/*)?", "/stories(/*)?"],
cookieRedirect: true,
},
},
runtimeConfig: {
public: {
baseUrl: "",
paymentLinkMembership: "https://buy.stripe.com/9AQaGj7K1eso4KsfYZ",
paymentLinkMembershipDiscount:
"https://buy.stripe.com/4gwbKnfctdokdgYcMM",
},
},
content: {
markdown: {
anchorLinks: false,
},
},
sentry: {
sourceMapsUploadOptions: {
org: "luak",
project: "luak-nuxt",
authToken:
"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",
},
},
modules: [
"@nuxtjs/tailwindcss",
"@nuxt/content",
"@nuxthq/studio",
"@nuxt/image",
"@nuxtjs/supabase",
"@vee-validate/nuxt",
"@nuxt/eslint",
"@sentry/nuxt/module",
],
});