-
Notifications
You must be signed in to change notification settings - Fork 2
/
nuxt.config.ts
59 lines (59 loc) · 1.27 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
export default defineNuxtConfig({
compatibilityDate: '2024-09-21',
devtools: {
enabled: false,
},
modules: [
'@nuxtjs/i18n',
'@nuxtjs/sitemap',
'@nuxtjs/robots',
'@nuxtjs/device',
'@nuxt/image',
'@nuxt/icon',
'nuxt-gtag',
'@pinia/nuxt',
],
app: {
head: {
htmlAttrs: {
lang: 'en',
},
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
link: [
{
rel: 'icon',
href: '/img/favicon.ico',
},
],
},
},
routeRules: {
'/': { prerender: true },
'/sitemap.xml': { prerender: true },
},
runtimeConfig: {
public: {
baseUrl: process.env.BASE_URL,
},
},
i18n: {
strategy: 'no_prefix',
langDir: 'translations',
locales: [
{
code: 'en',
name: 'English',
file: 'en.json',
},
{
code: 'pl',
name: 'Polski',
file: 'pl.json',
},
],
},
gtag: {
id: 'G-EV1076RNK2',
},
});