-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
36 lines (36 loc) · 1.01 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
export default defineNuxtConfig({
app: {
head: {
meta: [
{ name: "title", content: "JustScreaMy" },
{
name: "description",
content: "Web portfolio of a czechia developer",
},
{ name: "robots", content: "index, nofollow" },
{ name: "keywords", content: "programming, linux, porfolio, nuxtjs" },
{ name: "language", content: "English" },
{ name: "author", content: "JustScreaMy" },
],
},
},
runtimeConfig: {
api: {
smtp: {
auth: {
user: process.env.NUXT_API_SMTP_AUTH_USER,
pass: process.env.NUXT_API_SMTP_AUTH_PASS,
},
host: process.env.NUXT_API_SMTP_HOST,
port: parseInt(process.env.NUXT_API_SMTP_PORT || "465"),
secure: process.env.NUXT_API_SMTP_SECURE === "true",
},
mail: {
from: process.env.NUXT_API_MAIL_FROM,
to: process.env.NUXT_API_MAIL_TO,
},
},
},
devtools: { enabled: true },
modules: ["@nuxt/image"],
});