Skip to content

Commit

Permalink
fix: Text all
Browse files Browse the repository at this point in the history
  • Loading branch information
nicola-smartive committed Jun 18, 2024
1 parent bd41f8a commit 5245337
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ Structure of route:

app.use(cors({ origin: '*' }));
app.use(bodyParser.json({ limit: '50mb' }));
app.use(bodyParser.text({ limit: '50mb' }));
app.use(bodyParser.raw({ type: '*/*' }));
app.use(bodyParser.text({ limit: '50mb', type: '*/*' }));

const smtpServer = new SMTPServer({
authOptional: true,
Expand Down

0 comments on commit 5245337

Please sign in to comment.