2024-08-15 12:28:47 +00:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
|
|
devtools: { enabled: false },
|
|
|
|
|
|
|
|
modules: [
|
2024-08-21 04:33:52 +00:00
|
|
|
"@nuxt/content",
|
|
|
|
"@nuxtjs/device",
|
|
|
|
"nuxt-directus",
|
|
|
|
[
|
|
|
|
"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,
|
|
|
|
},
|
2024-08-15 12:28:47 +00:00
|
|
|
},
|
|
|
|
},
|
2024-08-21 04:33:52 +00:00
|
|
|
],
|
2024-08-15 12:28:47 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
directus: {
|
|
|
|
url: process.env.DIRECTUS_URL,
|
|
|
|
token: process.env.DIRECTUS_TOKEN,
|
|
|
|
autoFetch: true,
|
|
|
|
},
|
2024-08-16 10:32:17 +00:00
|
|
|
|
2024-08-21 04:33:52 +00:00
|
|
|
css: ["~/assets/style/style.css"],
|
2024-08-15 12:28:47 +00:00
|
|
|
|
|
|
|
postcss: {
|
|
|
|
plugins: {
|
2024-08-21 04:33:52 +00:00
|
|
|
"postcss-custom-media": {},
|
|
|
|
"postcss-hexrgba": {},
|
|
|
|
"postcss-import": {},
|
|
|
|
"postcss-nested": {},
|
|
|
|
},
|
2024-08-15 12:28:47 +00:00
|
|
|
},
|
|
|
|
|
2024-08-16 10:32:17 +00:00
|
|
|
telemetry: false,
|
2024-08-21 04:33:52 +00:00
|
|
|
compatibilityDate: "2024-08-15",
|
|
|
|
});
|