1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-08 07:10:54 +00:00

4.0.0-rc8

* Added: Initial support for chat on Clips.
* Fixed: Do not attempt to apply the dark theme to the Twitch Prime landing page.
* Fixed: Remove debug logging from Chat on Videos.
This commit is contained in:
SirStendec 2018-07-20 18:42:17 -04:00
parent ae9aa66799
commit 2297edb051
26 changed files with 962 additions and 34 deletions

13
webpack.clips.common.js Normal file
View file

@ -0,0 +1,13 @@
const path = require('path');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
/* global module __dirname */
module.exports = merge(common, {
resolve: {
alias: {
site: path.resolve(__dirname, 'src/sites/twitch-clips/')
}
}
});