We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f468ce7 commit f0f66dbCopy full SHA for f0f66db
packages/node_modules/overmind/src/Overmind.ts
@@ -434,7 +434,11 @@ export class Overmind<ThisConfig extends IConfiguration>
434
? boundExecution
435
: undefined
436
437
- if (utils.ENVIRONMENT === 'production' || action[utils.IS_OPERATOR]) {
+ if (
438
+ utils.ENVIRONMENT === 'production' ||
439
+ action[utils.IS_OPERATOR] ||
440
+ this.mode.mode === utils.MODE_SSR
441
+ ) {
442
const execution = this.createExecution(name, action, boundExecution)
443
this.eventHub.emit(internalTypes.EventType.ACTION_START, {
444
...execution,
0 commit comments