This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
93 lines (91 loc) · 1.81 KB
/
nuxt.config.js
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import eslintStylisticRules from "./eslint-stylistic.json"
import vuetify, { transformAssetUrls } from "vite-plugin-vuetify"
import { defineNuxtConfig } from "nuxt/config"
export default defineNuxtConfig({
app: {
pageTransition: { name: "page", mode: "out-in" }
},
build: {
transpile: [ "vuetify" ]
},
compatibilityDate: "2024-07-19",
css: [ "~/assets/styles/main.scss" ],
devtools: {
enabled: true,
telemetry: false,
timeline: { enabled: true }
},
eslint: {
config: {
stylistic: eslintStylisticRules,
nuxt: {
sortConfigKeys: true
}
}
},
experimental: {
buildCache: true,
defaults: {
nuxtLink: {
prefetch: true,
prefetchOn: { interaction: true, visibility: false }
}
}
},
googleFonts: {
display: "swap",
download: true,
families: {
"Fira+Code": true,
"Inter": true,
"Nunito": true
},
inject: true,
preconnect: true,
prefetch: true
},
i18n: {
defaultLocale: "fr",
detectBrowserLanguage: {
cookieKey: "i18n_lang",
fallbackLocale: "fr",
useCookie: true
},
locales: [
{ code: "en", file: "en.json" },
{ code: "fr", file: "fr.json" }
],
restructureDir: "i18n",
strategy: "no_prefix"
},
modules: [
(_options, nuxt) => {
nuxt.hooks.hook("vite:extendConfig", (config) => {
config.plugins.push(vuetify({ autoImport: { labs: true } }))
})
},
"@nuxt/devtools",
"@nuxt/eslint",
"@nuxtjs/google-fonts",
"@nuxtjs/i18n",
"@pinia/nuxt"
],
nitro: {
esbuild: {
options: {
target: "esnext"
}
}
},
sourcemap: {
client: false,
server: false
},
ssr: false,
telemetry: false,
vite: {
vue: {
template: { transformAssetUrls }
}
}
})