hey y'all, I have a super simple application
import { NestFactory } from '@nestjs/core'
import { Logger } from 'nestjs-pino'
import { CrawlerModule } from './crawler.module'
async function bootstrap() {
const app = await NestFactory.createApplicationContext(CrawlerModule)
// logging
app.useLogger(app.get(Logger))
app.flushLogs()
app.enableShutdownHooks()
}
bootstrap()
and when I change crawlerModule it will refresh but it won't rebuild dist so the added code isn't actually getting hot reloaded.
