add. Closes #8
All checks were successful
Deploy Nuxt App / deploy (push) Successful in 3m59s
All checks were successful
Deploy Nuxt App / deploy (push) Successful in 3m59s
This commit is contained in:
@ -25,11 +25,13 @@ export default defineNuxtConfig({
|
||||
|
||||
css: ['@/assets/css/tailwind.css'],
|
||||
...config,
|
||||
|
||||
htmlValidator: {
|
||||
usePrettier: true,
|
||||
logLevel: 'error',
|
||||
failOnError: false,
|
||||
},
|
||||
|
||||
app: {
|
||||
head: {
|
||||
title: 'Vino Galante',
|
||||
@ -39,4 +41,25 @@ export default defineNuxtConfig({
|
||||
...head,
|
||||
},
|
||||
},
|
||||
|
||||
modules: [
|
||||
...config.modules,
|
||||
[
|
||||
'nuxt-mail',
|
||||
{
|
||||
smtp: {
|
||||
host: 'smtp.yandex.ru',
|
||||
port: 465,
|
||||
secure: true,
|
||||
auth: {
|
||||
user: process.env.SMTP_USER || 'levishub@yandex.com',
|
||||
pass: process.env.SMTP_PASS || 'avhpihoudpyvibtx',
|
||||
},
|
||||
},
|
||||
message: {
|
||||
to: process.env.DEFAULT_TO_EMAIL || 'default@example.com',
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
})
|
||||
|
Reference in New Issue
Block a user