Created
December 5, 2018 15:51
-
-
Save ghankerson/f2fcf6a8969e595ce5a26dc89c705c6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const express = require("express"); | |
| const next = require("next"); | |
| const dev = process.env.NODE_ENV !== "production"; | |
| const app = next({ dev }); | |
| const handle = app.getRequestHandler(); | |
| app | |
| .prepare() | |
| .then(() => { | |
| const server = express(); | |
| server.get("/p/:id", (req, res) => { | |
| const actualPage = "/post"; | |
| const queryParams = { id: req.params.id }; | |
| app.render(req, res, actualPage, queryParams); | |
| }); | |
| server.get("*", (req, res) => { | |
| return handle(req, res); | |
| }); | |
| server.listen(3000, err => { | |
| if (err) throw err; | |
| console.log("> Ready on http://localhost:3000"); | |
| }); | |
| }) | |
| .catch(ex => { | |
| console.error(ex.stack); | |
| process.exit(1); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment