-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
48 lines (41 loc) · 979 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
40
41
42
43
44
45
46
47
48
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
title: 'Talky',
htmlAttrs: {
lang: 'en',
}
}
},
typescript: {
shim: false,
strict: true,
},
css: ['~/assets/main.css'],
modules: [
'@nuxt/image',
'@pinia/nuxt',
],
nitro: {
preset: 'cloudflare-module'
},
pinia: {
storesDirs: ['./stores/**']
},
routeRules: {
'/': { prerender: true },
'/api/**': { cors: true },
'/login/**': { ssr: false, prerender: true }, // Disable ssr for login so that the state parameter can be generated and verified on the client
},
runtimeConfig: { // Values will be overriden by environment variables
discordClientSecret: undefined,
public: {
discordClientId: undefined,
discordCallbackUrl: undefined,
}
}
})