-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
52 lines (44 loc) · 991 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
49
50
51
52
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
runtimeConfig: {
public:{
apiBase: 'https://giggle-api.giggleappdevop.workers.dev/api/v1'
}
},
modules: [
"@nuxtjs/tailwindcss",
"nuxt-primevue",
"@nuxtjs/google-fonts",
"@pinia/nuxt",
"pinia-plugin-persistedstate/nuxt",
"@nuxtjs/i18n",
"@formkit/auto-animate/nuxt",
"@pinia/colada-nuxt",
"@nuxt/eslint",
"@nuxthub/core",
"@sentry/nuxt/module"
],
css: ['primeicons/primeicons.css','primevue/resources/themes/aura-light-green/theme.css'],
googleFonts: {
families:{
Inter: true
}
},
i18n:{
defaultLocale:"en",
strategy: "no_prefix",
vueI18n: './i18n.config.ts'
},
compatibilityDate: "2024-12-21",
sentry: {
sourceMapsUploadOptions: {
org: "giggle",
project: "javascript-nuxt"
}
},
sourcemap: {
client: "hidden"
}
})