-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
48 lines (48 loc) · 1.11 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ["@nuxtjs/tailwindcss", "@nuxtjs/supabase", "@pinia/nuxt", "@vite-pwa/nuxt"],
css: [
"@fortawesome/fontawesome-svg-core/styles.css"
],
supabase: {
redirectOptions: {
login: "/auth",
callback: "/confirm",
exclude: ["/"]
}
},
runtimeConfig: {
public: {
serviceUrl: process.env.SERVICE_URL!
}
},
pwa:{
manifest: {
"theme_color": "#fff",
"background_color": "#fff",
"display": "standalone",
"scope": "/",
"start_url": "/",
"name": "Discord Bot",
"short_name": "D25",
"icons": [
{
"purpose": "maskable",
"src": "images/icon512_maskable.png",
"sizes": "512x512",
"type": "image/png"
},
{
"purpose": "any",
"src": "images/icon512_rounded.png",
"sizes": "512x512",
"type": "image/png"
},
]
},
devOptions: {
enabled: true
}
}
})