We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 709416b commit b0daa9bCopy full SHA for b0daa9b
app.ts
@@ -12,10 +12,11 @@ const app = express(feathers());
12
app.use(express.json());
13
app.use(express.urlencoded({ extended: true }));
14
app.use(express.static(__dirname));
15
-app.configure(express.rest());
16
-app.configure(socketio());
17
app.use(express.errorHandler());
18
app.use(cors());
+
+app.configure(express.rest());
19
+app.configure(socketio());
20
app.configure(services);
21
22
0 commit comments