-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
33 lines (33 loc) · 951 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
devtools: { enabled: true },
modules: ['@nuxtjs/i18n', '@nuxtjs/tailwindcss'],
components: [
{
// disable auto-prefixing of component names
path: '~/components',
pathPrefix: false,
},
],
runtimeConfig: {
public: {
firebase: {
apiKey: '<apiKey>',
authDomain: '<authDomain>',
projectId: '<projectId>',
storageBucket: '<storageBucket>',
messagingSenderId: '<messagingSenderId>',
appId: '<appId>',
},
},
},
i18n: {
locales: ['en', 'tr'],
defaultLocale: 'en',
fallbackLocale: 'en',
detectBrowserLanguage: false,
skipSettingLocaleOnNavigate: true,
vueI18n: './i18n.config.ts',
},
});