We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef6694 commit 36718baCopy full SHA for 36718ba
1 file changed
src/app.ts
@@ -256,10 +256,9 @@ export class App<State> {
256
!this.#buildCache.hasSnapshot && this.config.mode === "production" &&
257
DENO_DEPLOYMENT_ID !== undefined
258
) {
259
- const message = DENO_DEPLOYMENT_ID
260
- ? '`deno task build` must be run before starting the server. Go to "Settings" in Deno Deploy and set the build command to `deno task build`.'
261
- : "`deno task build` must be run before starting the server.";
262
- throw new SetupError(message);
+ throw new SetupError(
+ '`deno task build` must be run before starting the server. Go to "Settings" in Deno Deploy and set the build command to `deno task build`.',
+ );
263
}
264
265
return async (
0 commit comments