Update index.js
Browse files
index.js
CHANGED
@@ -63,7 +63,11 @@ app.use(
|
|
63 |
})
|
64 |
);
|
65 |
|
66 |
-
app.use(
|
|
|
|
|
|
|
|
|
67 |
|
68 |
app.use(async (req, res, next) => {
|
69 |
await CheckMilWares.handle(req, res, next);
|
|
|
63 |
})
|
64 |
);
|
65 |
|
66 |
+
app.use(express.static('public'))
|
67 |
+
|
68 |
+
app.get('/policy', (req, res) {
|
69 |
+
res.sendFile('policy.html');
|
70 |
+
});
|
71 |
|
72 |
app.use(async (req, res, next) => {
|
73 |
await CheckMilWares.handle(req, res, next);
|