Compare commits
2 Commits
a30f394ef7
...
598cf54bc5
| Author | SHA1 | Date |
|---|---|---|
|
|
598cf54bc5 | |
|
|
9352b3f0a1 |
|
|
@ -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,8 +23,6 @@ interface MailPayload
|
|||
data: Record<string, any>
|
||||
}
|
||||
|
||||
console.log(config);
|
||||
|
||||
const transport = nodemailer.createTransport({
|
||||
//@ts-ignore
|
||||
pool: true,
|
||||
|
|
@ -39,9 +37,7 @@ 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