-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
93 lines (92 loc) · 2.63 KB
/
nuxt.config.ts
File metadata and controls
93 lines (92 loc) · 2.63 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
compatibilityDate: '2024-09-12',
devtools: { enabled: true },
runtimeConfig: {
authOrigin: process.env.AUTH_ORIGIN,
authSecret: process.env.AUTH_SECRET,
authClientId: process.env.AUTH_CLIENT_ID,
authClientSecret: process.env.AUTH_CLIENT_SECRET,
authIssuerBaseURL: process.env.AUTH_ISSUER_BASE_URL,
auth0Domain: process.env.AUTH_0_DOMAIN,
dbName: process.env.DB_NAME,
cloudinaryCloudName: process.env.CLOUDINARY_CLOUD_NAME,
cloudinaryApiKey: process.env.CLOUDINARY_API_KEY,
cloudinaryApiSecret: process.env.CLOUDINARY_API_SECRET,
cloudinaryUrl: process.env.CLOUDINARY_URL,
ablyRoot: process.env.ABLY_ROOT,
public: {
baseUrl: process.env.BASE_URL,
}
},
build: {
transpile: ['vuetify'],
},
features: {
inlineStyles: false
},
app: {
head: {
title: "Daily Bingo",
meta: [
{
name: "description",
content: "A fun little app to share with friends. What's on your bingo card today?"
},
// {
// 'http-equiv': 'Content-Security-Policy',
// content: "script-src 'self' https://clerk.accounts.dev;",
// },
],
}
},
modules: ["vuetify-nuxt-module", "@nuxtjs/tailwindcss", "@pinia/nuxt", "vue-clerk/nuxt", "@nuxt/test-utils/module"],
pinia: {
storesDirs: ["./stores/**"]
},
css: [
"./assets/scss/settings.scss",
],
vuetify: {
moduleOptions: {
includeTransformAssetsUrls: true,
styles: {
configFile: "assets/scss/settings.scss",
},
},
vuetifyOptions: {
display: {
mobileBreakpoint: 'xs',
thresholds: {
xs: 0,
sm: 640,
md: 768,
lg: 1024,
xl: 1280,
xxl: 1536,
},
},
}
},
nitro: {
preset: "netlify"
},
clerk: {
appearance: {
variables: { colorPrimary: '#000000' },
elements: {
formButtonPrimary:
'bg-black border border-black border-solid hover:bg-white hover:text-black',
socialButtonsBlockButton:
'bg-white border-gray-200 hover:bg-transparent hover:border-black text-gray-600 hover:text-black',
socialButtonsBlockButtonText: 'font-semibold',
formButtonReset:
'bg-white border border-solid border-gray-200 hover:bg-transparent hover:border-black text-gray-500 hover:text-black',
membersPageInviteButton:
'bg-black border border-black border-solid hover:bg-white hover:text-black',
card: 'bg-[#fafafa]',
},
},
}
});