Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
node-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
project-templates
web
node-api
Commits
707b5f76
Commit
707b5f76
authored
Jul 09, 2019
by
Vadym Gidulian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added responding w/ 204 for all OPTIONS requests
parent
646daae7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
index.js
src/index.js
+3
-0
No files found.
src/index.js
View file @
707b5f76
...
@@ -20,6 +20,9 @@ app.use((req, res, next) => {
...
@@ -20,6 +20,9 @@ app.use((req, res, next) => {
res
.
header
(
'Access-Control-Allow-Headers'
,
'Origin, X-Requested-With, Accept, Content-Type'
);
res
.
header
(
'Access-Control-Allow-Headers'
,
'Origin, X-Requested-With, Accept, Content-Type'
);
res
.
header
(
'Access-Control-Allow-Methods'
,
'OPTIONS, HEAD, GET'
);
res
.
header
(
'Access-Control-Allow-Methods'
,
'OPTIONS, HEAD, GET'
);
res
.
header
(
'Access-Control-Expose-Headers'
,
'Content-Length'
);
res
.
header
(
'Access-Control-Expose-Headers'
,
'Content-Length'
);
if
(
req
.
method
===
'OPTIONS'
)
return
res
.
send
(
204
);
next
();
next
();
});
});
app
.
use
(
responseTime
());
app
.
use
(
responseTime
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment