1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-07 03:40:48 +00:00
* Added: Extension Storage Provider so that extension users can store their settings in a way that won't be reset when they clear their browsing data and that works across multiple sub-domains, embeds, pop-outs, etc.
* Fixed: Additional issue with FFZ failing to load completely on Firefox.
This commit is contained in:
SirStendec 2025-09-05 16:31:50 -04:00
parent 3551d5c650
commit fb2857a63c
13 changed files with 871 additions and 51 deletions

View file

@ -351,6 +351,10 @@ if ( DEV_SERVER )
setupMiddlewares: (middlewares, devServer) => {
devServer.app.get('/script/script.min.js', (req, res) => {
res.redirect('/script/script.js');
});
devServer.app.get('/update_font', (req, res) => {
const proc = exec('npm run font:save');