-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
72 lines (65 loc) · 1.61 KB
/
nuxt.config.ts
File metadata and controls
72 lines (65 loc) · 1.61 KB
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
site: {
url: "https://selimdev.vercel.app",
},
css: [{ src: "@/assets/scss/main.scss" }],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
modules: [
"nuxt-icon",
"@nuxtjs/i18n",
"@morev/vue-transitions/nuxt",
"@nuxt/image",
"@nuxtjs/robots",
"@nuxtjs/sitemap",
"nuxt-schema-org",
],
i18n: {
baseUrl: "https://selimdev.vercel.app",
compilation: {
strictMessage: false,
},
langDir: "lang/",
locales: [
{
code: "ru",
file: "ru.js",
iso: "ru-RU",
},
{
code: "en",
file: "en.js",
iso: "en-EN",
},
],
lazy: true,
defaultLocale: "en",
detectBrowserLanguage: {
useCookie: true,
cookieKey: "i18n_redirected",
},
strategy: "prefix_except_default",
},
image: {
quality: 80,
format: ["webp", "avif", "png"],
},
runtimeConfig: {
public: {
siteUrl:
process.env.NUXT_PUBLIC_SITE_URL || "https://selimdev.vercel.app",
siteName: "Selim Ataballyev | Full Stack Developer",
siteDescription:
"Looking for a top-notch Full Stack Developer? I am skilled and experienced developer that offers expert web solutions and custom software development services to take your projects to new heights. Contact me today for a seamless online presence and innovative applications.",
language: "en-US",
titleSeparator: "|",
trailingSlash: true,
},
},
compatibilityDate: "2025-12-22",
});