1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Changed: Use `cdn2` for loading the script, rather than `cdn` to put the script files on a separate domain from other content.
* Fixed: Bug with the audio compressor that would cause it to enter a broken state for users (mostly on Firefox).
* Experiments: Set the EMQX PubSub experiment to 50%.
This commit is contained in:
SirStendec 2024-10-19 13:13:01 -04:00
parent 3538ef86ad
commit efd6d2fa42
8 changed files with 13 additions and 13 deletions

View file

@ -26,7 +26,7 @@ const FILE_PATH = DEV_SERVER
? 'https://localhost:8000/script/'
: FOR_EXTENSION
? ''
: 'https://cdn.frankerfacez.com/static/';
: 'https://cdn2.frankerfacez.com/static/';
console.log('NODE_ENV:', process.env.NODE_ENV);
@ -340,7 +340,7 @@ if ( DEV_SERVER )
proxy: {
'**': {
target: 'https://cdn.frankerfacez.com/',
target: 'https://cdn2.frankerfacez.com/',
changeOrigin: true
}
},