Skip to content

Commit 5ae289e

Browse files
authored
Fix webpack env variable settings (#7557)
1 parent 9f90a07 commit 5ae289e

File tree

3 files changed

+59
-560
lines changed

3 files changed

+59
-560
lines changed

config/webpack.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ module.exports = {
115115
);
116116
}),
117117
new NodePolyfillPlugin(),
118-
new webpack.EnvironmentPlugin([
119-
'RTDB_EMULATOR_PORT',
120-
'RTDB_EMULATOR_NAMESPACE'
121-
])
118+
new webpack.EnvironmentPlugin({
119+
'RTDB_EMULATOR_PORT': false,
120+
'RTDB_EMULATOR_NAMESPACE': false
121+
})
122122
]
123123
};

integration/firestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"ts-loader": "8.4.0",
3333
"typescript": "4.2.2",
3434
"webpack": "5.76.0",
35-
"webpack-stream": "6.1.2"
35+
"webpack-stream": "7.0.0"
3636
}
3737
}

0 commit comments

Comments
 (0)