Browse Source

dev: use alpha as the default proxy target

master
Saúl Ibarra Corretgé 5 years ago
parent
commit
40a1af5302
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 { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
8 8
  * development with webpack-dev-server.
9 9
  */
10 10
 const devServerProxyTarget
11
-    = process.env.WEBPACK_DEV_SERVER_PROXY_TARGET || 'https://beta.meet.jit.si';
11
+    = process.env.WEBPACK_DEV_SERVER_PROXY_TARGET || 'https://alpha.jitsi.net';
12 12
 
13 13
 const analyzeBundle = process.argv.indexOf('--analyze-bundle') !== -1;
14 14
 

Loading…
Cancel
Save