Closed
Description
I'm submitting a...
[ ] Regression
[ ] Bug report
[ ] Feature request
[ x] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.
Minimal reproduction of the problem with instructions
import * as next from 'next';
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
const port = parseInt(process.env.PORT, 10) || 3000;
const dev = process.env.NODE_ENV !== 'production';
const client = next({ dev });
async function bootstrap() {
await client.prepare();
const handle = client.getRequestHandler();
const server = await NestFactory.create(AppModule);
server.use(handle);
server.listen(port);
}
// app.controller.ts
@Controller('/test')
export class AppController {
constructor(private readonly appService: AppService) {}
@Get()
root(): string {
return this.appService.root();
}
}
// app module
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [],
controllers: [AppController],
providers: [AppService]
})
export class AppModule {}
// app.service
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
root() {
return 'Hello world!';
}
}
What is the motivation / use case for changing the behavior?
All requests are handled by next.js (SSR Framewrok) . I get a 404 error throw by next.js. when i go to localhost:3000/test. But this url is watched by my AppController, it should return the string hello world.
Environment
Nest version: X.Y.Z
For Tooling issues:
- Node version: XX
- Platform:
Others: