We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b49e11 commit c22c828Copy full SHA for c22c828
bin/encore.js
@@ -24,8 +24,8 @@ context.runtimeConfig = runtimeConfig;
24
process.argv.splice(2, 1);
25
26
// remove arguments not supported by webpack/-dev-server
27
-const EncoreOnlyArguments = new Set(['--keep-public-path']);
28
-process.argv = process.argv.filter(arg => !EncoreOnlyArguments.has(arg));
+const encoreOnlyArguments = new Set(['--keep-public-path']);
+process.argv = process.argv.filter(arg => !encoreOnlyArguments.has(arg));
29
30
if (!runtimeConfig.isValidCommand) {
31
if (runtimeConfig.command) {
0 commit comments