Skip to content

Commit

Permalink
change proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
frontdevguy committed Apr 24, 2020
1 parent fad91c4 commit 83206c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@
"devDependencies": {},
"keywords": [],
"author": "",
"license": "ISC"
"license": "ISC",
"proxy": "http://localhost:3001"
}
7 changes: 1 addition & 6 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ const express = require("express");
const socketio = require("socket.io");
const router = require("./server/route");
const app = express();
const {
addUsers,
removeUser,
getAllUsers,
getUser,
} = require("./server/user");
const { addUsers, removeUser, getUser } = require("./server/user");

app.use(router);

Expand Down

0 comments on commit 83206c6

Please sign in to comment.