Fix CI having invalid node_env

pull/18651/head
Dariusz Niemczyk 2021-08-23 12:35:43 +02:00
parent c6e6ac18a2
commit 231ff3a73d
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05
2 changed files with 2 additions and 5 deletions

View File

@ -38,6 +38,8 @@ import { createClient } from "matrix-js-sdk/src/matrix";
let lastLocationHashSet: string = null;
console.log(`Application is running in ${process.env.NODE_ENV} mode`);
// Parse the given window.location and return parameters that can be used when calling
// MatrixChat.showScreen(screen, params)
function getScreenFromLocation(location: Location) {

View File

@ -462,11 +462,6 @@ module.exports = (env, argv) => {
},
plugins: [
new webpack.EnvironmentPlugin({
NODE_ENV: 'development', // use 'development' unless process.env.NODE_ENV is defined
DEBUG: false,
}),
// This exports our CSS using the splitChunks and loaders above.
new MiniCssExtractPlugin({
filename: useHMR ? "bundles/[name].css" : "bundles/[hash]/[name].css",