-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.ts
62 lines (62 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
export default defineNuxtConfig({
// buildModules: ['@vueuse/nuxt', '@nuxtjs/strapi'],
modules: [
'@nuxt/content',
'@nuxtjs/tailwindcss',
'@vueuse/nuxt',
'@pinia/nuxt',
'nuxt-icon',
'@nuxtjs/i18n',
// '@nuxtjs/robots',
// '@nuxtjs/image',
],
// buildModules: ['@nuxtjs/google-analytics', '@vueuse/nuxt'],
// strapi: {
// url: process.env.STRAPI_URL || 'https://bapi.warsono.id',
// prefix: '/api',
// version: 'v4',
// cookie: {},
// },
i18n: {
locales: ['en', 'id'],
defaultLocale: 'en',
vueI18n: {
legacy: false,
locale: 'en',
messages: {
en: {
app_name: 'Nuxt Tailwind Kit',
app_description:
'Quick Boilerplate built on top of Nuxt 3 and Tailwind CSS',
menu_home: 'Home',
menu_store: 'Store',
menu_blog: 'Blog',
menu_playground: 'playground',
menu_dashboard: 'Dashboard',
},
id: {
app_name: 'Nuxt Tailwind Kit',
app_description:
'Boilerplate cepat yang dibangun dari Nuxt 3 and Tailwind CSS',
menu_home: 'Beranda',
menu_store: 'Toko',
menu_blog: 'Blog',
menu_playground: 'playground',
menu_dashboard: 'Dasbor',
},
},
},
},
runtimeConfig: {
public: {
gaId: '',
},
},
// googleAnalytics: {
// id: process.env.GOOGLE_ANALYTICS_ID, // Use as fallback if no runtime
// config is provided }, publicRuntimeConfig: { googleAnalytics: { id:
// process.env.GOOGLE_ANALYTICS_ID, }, },
content: {
// https://content.nuxtjs.org/api/configuration
},
})