mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
4.51.1
* Fixed: Pages on domains other than `www.twitch.tv` failing to load due to a bug with the settings bridge introduced in the last update. * Fixed: The standalone player's latency metadata not displaying the buffer length. * Fixed: Replies appearing with colored usernames with the setting to have colored mentioned disabled.
This commit is contained in:
parent
588d3e3da9
commit
f88f859dcf
7 changed files with 29 additions and 9 deletions
|
@ -122,8 +122,12 @@ const config = {
|
|||
new CopyPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: './src/entry.js',
|
||||
to: 'script.js'
|
||||
from: FOR_EXTENSION
|
||||
? './src/entry_ext.js'
|
||||
: './src/entry.js',
|
||||
to: (DEV_SERVER || DEV_BUILD)
|
||||
? 'script.js'
|
||||
: 'script.min.js'
|
||||
}
|
||||
]
|
||||
}),
|
||||
|
@ -142,7 +146,7 @@ const config = {
|
|||
}
|
||||
}),
|
||||
new WebpackManifestPlugin({
|
||||
|
||||
publicPath: ''
|
||||
})
|
||||
],
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue