-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
nuxt.config.ts
73 lines (71 loc) · 1.56 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
63
64
65
66
67
68
69
70
71
72
73
export default defineNuxtConfig({
modules: [
'@nuxt/content',
'@nuxt/icon',
'@nuxtjs/tailwindcss',
'@nuxtjs/i18n',
'@nuxtjs/google-fonts',
'@nuxtjs/fontaine',
'@pinia/nuxt',
'@vueuse/nuxt',
],
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_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_dashboard: 'Dasbor',
},
},
},
// vueI18n: './i18n.config.ts', // if you are using custom path, default
},
runtimeConfig: {
public: {
gaId: '',
},
},
googleFonts: {
prefetch: true,
preconnect: true,
families: {
Inter: [100, 200, 300, 400, 500, 600, 700, 800, 900],
},
},
content: {
highlight: {
theme: {
default: 'github-dark',
},
},
preload: ['json', 'js', 'ts', 'html', 'css', 'vue', 'diff', 'shell', 'markdown', 'yaml', 'bash', 'ini'],
},
vite: {
vue: {
script: {
propsDestructure: true,
},
},
},
devtools: {
enabled: true,
},
})