Browse Source

Merge pull request #850 from saghul/fix-minimize

build: fix setting webpack mode
dev1
Saúl Ibarra Corretgé 6 years ago
parent
commit
7ecead1ac0
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      webpack.config.js

+ 1
- 1
webpack.config.js View File

@@ -8,7 +8,7 @@ const minimize
8 8
 
9 9
 const config = {
10 10
     devtool: 'source-map',
11
-    mode: minimize ? 'development' : 'production',
11
+    mode: minimize ? 'production' : 'development',
12 12
     module: {
13 13
         rules: [ {
14 14
             // Version this build of the lib-jitsi-meet library.

Loading…
Cancel
Save