Skip to content

Instantly share code, notes, and snippets.

@LazyFatArrow
Last active August 19, 2019 11:39
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 LazyFatArrow/c62805422bb4f5ccebaba9da06b065b6 to your computer and use it in GitHub Desktop.
Save LazyFatArrow/c62805422bb4f5ccebaba9da06b065b6 to your computer and use it in GitHub Desktop.
import { Controller, Get, Res, Next, Req } from '@nestjs/common';
import { join } from 'path';
import { Response, NextFunction, Request } from 'express';
@Controller()
export class AppController {
@Get('*')
get(
@Res() res: Response,
@Next() next: NextFunction,
@Req() req: Request,
) {
// here you can check if the requested path is your api endpoint, if that's the case then we have to return next()
if (req.path.includes('graphql')) {
return next();
}
// change the path to the correct html page path in your project
res.sendFile(join(process.cwd(), '../client/dist/index.html'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment