Skip to content

Commit d95e498

Browse files
Merge pull request #4996 from vojtechszocs/fix-hot-reload
Fix HOT_RELOAD fallback value
2 parents c5b9d98 + eddbbef commit d95e498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/webpack.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface Configuration extends webpack.Configuration {
1717
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
1818

1919
const NODE_ENV = process.env.NODE_ENV || 'development';
20-
const HOT_RELOAD = process.env.HOT_RELOAD || 'false';
20+
const HOT_RELOAD = process.env.HOT_RELOAD || 'true';
2121
const CHECK_CYCLES = process.env.CHECK_CYCLES || 'false';
2222

2323
/* Helpers */

0 commit comments

Comments
 (0)