2023-07-17 19:11:13 +00:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
|
|
devtools: { enabled: false },
|
|
|
|
|
2024-08-07 01:55:12 +00:00
|
|
|
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,
|
|
|
|
},
|
|
|
|
},
|
2023-11-30 07:48:17 +00:00
|
|
|
},
|
2024-08-07 01:55:12 +00:00
|
|
|
],
|
2023-07-17 19:11:13 +00:00
|
|
|
],
|
2024-08-07 01:55:12 +00:00
|
|
|
|
2024-11-12 22:03:49 +00:00
|
|
|
css: [
|
|
|
|
"~/assets/style/style.css",
|
|
|
|
],
|
|
|
|
|
|
|
|
postcss: {
|
|
|
|
plugins: {
|
|
|
|
'postcss-import': {},
|
|
|
|
'postcss-nested': {},
|
|
|
|
'postcss-hexrgba': {},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2024-08-20 12:33:55 +00:00
|
|
|
compatibilityDate: "2024-08-20",
|
|
|
|
});
|