Prerequisites
Issue
Hi,
I have scaffolded my project with : fastify generate myproject --esm --lang=ts
In my package.json, I have:
start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
To run my sever in a production environnement do I need to run npm run start ?
So every time I start the server it will rebuild the ts files ?
Thanks
Prerequisites
Issue
Hi,
I have scaffolded my project with :
fastify generate myproject --esm --lang=tsIn my package.json, I have:
start": "npm run build:ts && fastify start -l info dist/app.js","build:ts": "tsc",To run my sever in a production environnement do I need to run
npm run start?So every time I start the server it will rebuild the ts files ?
Thanks