-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
59 lines (46 loc) · 1.26 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const express = require('express')
const next = require('next')
// import { sendFile } from 'next/server'
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
app.prepare().then(() => {
const server = express()
// custom route for posts
server.get('/artisti/:id', (req, res) => {
return app.render(req, res, '/artisti', {
id: req.params.id
})
})
server.get('*', (req, res) => {
return handle(req, res)
})
server.listen(3000, (err) => {
if (err) throw err
console.log('> Ready on http://localhost:3000')
})
})
// function renderPost(app, req, res) {
// if (dev) {
// handle(req, res)
// return
// }
// // if (pageCache.has(req.path)) {
// // res.send(pageCache.get(req.path))
// // return
// // }
// app
// .renderToHTML(req, res, req.path, req.query)
// .then(html => {
// // // Let's cache this page
// // // eslint-disable-next-line no-console
// // console.log(`CACHE MISS: ${req.path}`);
// // pageCache.set(req.path, html);
// // send it
// res.send(html);
// })
// .catch(err => {
// console.error(err.stack)
// app.renderError(err, req, res, req.path, req.query);
// });
// }