The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: clarify prod hosting

+6 -2
+4
docs/build.md
··· 21 21 > - `--serve`: run a local hot-reloading server to preview your Quartz 22 22 > - `--port`: what port to run the local preview server on 23 23 > - `--concurrency`: how many threads to use to parse notes 24 + 25 + > [!warning] Not to be used for production 26 + > Serve mode is intended for local previews only. 27 + > For production workloads, see the page on [[hosting]].
+2 -2
quartz/build.ts
··· 163 163 } 164 164 165 165 const buildId = newBuildId() 166 - ctx.buildId = buildId 166 + ctx.buildId = buildId 167 167 buildData.lastBuildMs = new Date().getTime() 168 168 const release = await mut.acquire() 169 169 ··· 360 360 } 361 361 362 362 const buildId = newBuildId() 363 - ctx.buildId = buildId 363 + ctx.buildId = buildId 364 364 buildData.lastBuildMs = new Date().getTime() 365 365 const release = await mut.acquire() 366 366