-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
52 lines (52 loc) · 1.04 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: ['@nuxt/ui'],
app: {
head: {
title: 'BugSlide',
viewport: 'width=device-width, initial-scale=1',
},
},
runtimeConfig: {
public: {
SENTRY_DSN_PUBLIC: '',
RELEASE: '',
},
publicHost: '',
auth: {
password: '',
clientId: '',
clientSecret: '',
},
db: {
tursoDatabaseUrl: '',
tursoAuthToken: '',
},
mail: {
host: '',
port: 0,
username: '',
password: '',
secure: false,
requireTLS: false,
from: '',
},
},
$development: {
runtimeConfig: {
public: {
SENTRY_DSN_PUBLIC: 'http://public@localhost:3000/3',
RELEASE: 'commit:abcdefg12345',
},
publicHost: 'http://localhost:3000',
auth: {
password: 'a-32-plus-characters-long-password',
},
},
},
// nitro: {
// preset: './preset',
// },
});