Skip to content

Commit

Permalink
Copilot bruh
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed Sep 14, 2024
1 parent 55efae9 commit a368466
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sst.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default $config({
for (const [name, content] of Object.entries(cnames)) {
new cloudflare.Record(`CnameRecord${name}`, {
zoneId: zone.id,
name: email.sender,
name: name,
type: "CNAME",
content,
proxied: false,
Expand All @@ -104,7 +104,7 @@ export default $config({
for (const [content, priority] of mxs) {
new cloudflare.Record(`MxRecord${content}`, {
zoneId: zone.id,
name: email.sender,
name: "@",
type: "MX",
content,
priority,
Expand All @@ -113,7 +113,7 @@ export default $config({
for (const value of txts) {
new cloudflare.Record(`TxtRecord${value}`, {
zoneId: zone.id,
name: email.sender,
name: "@",
type: "TXT",
content: value,
});
Expand Down

0 comments on commit a368466

Please sign in to comment.