39 lines
726 B
TypeScript
39 lines
726 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: false },
|
|
|
|
modules: [
|
|
"@nuxt/content",
|
|
"@nuxtjs/device",
|
|
[
|
|
"nuxt-mail",
|
|
{
|
|
message: {
|
|
to: process.env.EMAIL,
|
|
},
|
|
smtp: {
|
|
host: process.env.SMTP_HOST,
|
|
port: process.env.SMTP_PORT,
|
|
auth: {
|
|
user: process.env.SMTP_USER,
|
|
pass: process.env.SMTP_PASS,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
],
|
|
|
|
css: [
|
|
"~/assets/style/style.css",
|
|
],
|
|
|
|
postcss: {
|
|
plugins: {
|
|
'postcss-import': {},
|
|
'postcss-nested': {},
|
|
'postcss-hexrgba': {},
|
|
}
|
|
},
|
|
|
|
compatibilityDate: "2024-08-20",
|
|
}); |