Compare commits
No commits in common. "598cf54bc524a80e96c71d0289baeeaacdb1b19f" and "a30f394ef7155c89956da9454c3363e97b599f28" have entirely different histories.
598cf54bc5
...
a30f394ef7
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<Label class="my-2 flex flex-1 items-center justify-between flex-col md:flex-row">
|
||||
<span class="pb-1 md:p-0">{{ label }}</span>
|
||||
<SelectRoot v-model="model" :default-value="defaultValue">
|
||||
<SelectRoot :v-model="model" :default-value="defaultValue">
|
||||
<SelectTrigger :disabled="disabled" class="mx-4 inline-flex min-w-[160px] items-center justify-between px-3 text-sm font-semibold leading-none h-8 gap-1
|
||||
bg-light-20 dark:bg-dark-20 border border-light-35 dark:border-dark-35 outline-none data-[placeholder]:font-normal
|
||||
data-[placeholder]:text-light-50 dark:data-[placeholder]:text-dark-50 focus:shadow-raw transition-[box-shadow] focus:shadow-light-40 dark:focus:shadow-dark-40
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@ interface MailPayload
|
|||
data: Record<string, any>
|
||||
}
|
||||
|
||||
console.log(config);
|
||||
|
||||
const transport = nodemailer.createTransport({
|
||||
//@ts-ignore
|
||||
pool: true,
|
||||
|
|
@ -37,7 +39,9 @@ const transport = nodemailer.createTransport({
|
|||
domainName: domain,
|
||||
keySelector: selector,
|
||||
privateKey: dkim,
|
||||
}
|
||||
},
|
||||
logger: true,
|
||||
debug: true
|
||||
});
|
||||
|
||||
if(process.env.NODE_ENV === 'production')
|
||||
|
|
|
|||
Loading…
Reference in New Issue