Skip to content

Commit b35c95f

Browse files
committed
Added CORS package
1 parent ba906d1 commit b35c95f

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

app.js

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const path = require('path');
33
// 3rd party modules
44
const express = require('express');
55
const nunjucks = require('nunjucks');
6+
const cors = require('cors');
67
// Our modules
78
const AppError = require('./utils/appError');
89
const globalErrorHandler = require('./controllers/errorController');
@@ -12,6 +13,9 @@ const viewRoutes = require('./routes/viewRoutes');
1213
// Code
1314
const app = express();
1415

16+
// CORT
17+
app.use(cors());
18+
1519
// Template Engine Nunchucks
1620
nunjucks.configure('views', {
1721
autoescape: true,

package-lock.json

+23-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"author": "Shanmugam M",
1414
"license": "ISC",
1515
"dependencies": {
16+
"cors": "^2.8.5",
1617
"dotenv": "^10.0.0",
1718
"express": "^4.17.1",
1819
"mongoose": "^5.12.14",

0 commit comments

Comments
 (0)