mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
* 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.
13 lines
No EOL
275 B
JavaScript
13 lines
No EOL
275 B
JavaScript
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/')
|
|
}
|
|
}
|
|
}); |