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 dc92870 commit b26e8e2Copy full SHA for b26e8e2
packages/node_modules/overmind/src/index.ts
@@ -204,7 +204,11 @@ export class Overmind<ThisConfig extends IConfiguration>
204
) {
205
const name = options.name || 'OvermindApp'
206
207
- if (IS_DEVELOPMENT && mode.mode === MODE_DEFAULT) {
+ if (
208
+ IS_DEVELOPMENT &&
209
+ mode.mode === MODE_DEFAULT &&
210
+ !(process && process.title === 'node')
211
+ ) {
212
if (hotReloadingCache[name]) {
213
return hotReloadingCache[name].reconfigure(configuration)
214
} else {
0 commit comments