Skip to content

Commit 037bc82

Browse files
committed
[Web] Disable eslint plugin inside dev server to prevent it from block the app execution
More specifically, Windows was always showing a crlf error
1 parent cf5148c commit 037bc82

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/web/config-overrides.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,9 @@ module.exports = function override(config, env) {
4040
}),
4141
)
4242

43+
config.plugins = config.plugins.filter(
44+
(plugin) => plugin?.constructor?.name !== 'ESLintWebpackPlugin',
45+
)
46+
4347
return config
4448
}

0 commit comments

Comments
 (0)