Skip to content

Instantly share code, notes, and snippets.

@vnglst
Last active November 3, 2016 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnglst/862f1df01807c14fa125342b5fc59eff to your computer and use it in GitHub Desktop.
Save vnglst/862f1df01807c14fa125342b5fc59eff to your computer and use it in GitHub Desktop.
...
var index = require('./routes/index');
var users = require('./routes/users');
var pdf = require(./routes/pdf’); // <-- add this line
...
app.use('/', index);
app.use('/users', users);
app.use('/pdf', pdf); // <-- add this line
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment