1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 12:55:55 +00:00
FrankerFaceZ/webpack.web.dev.js
SirStendec 958a3956f1 4.30.0
This update includes a dependency update to version 2 of PopperJS, the library we use for tool-tips. Hopefully this fixes flickering issues with tool-tips. Some tool-tips may have issues after the update. If something doesn't look right, please ask.

* Fixed: Chat lines not showing replies.
* API Fixed: `setChildren` now supports variables that are not `Node`s or `string`s, and does so by casting other types to `string`s. Makes it easy to include numbers and other variables when using JSX.
* Maintenance: Update to PopperJS v2.
2021-11-10 18:27:52 -05:00

101 lines
No EOL
1.8 KiB
JavaScript

/* eslint-disable */
const path = require('path');
const merge = require('webpack-merge');
const common = require('./webpack.web.common.js');
const {exec} = require('child_process');
const CopyPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
/* global module */
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map',
plugins: [
new CopyPlugin([
{
from: './src/entry.js',
to: 'script.js'
}
]),
new webpack.DefinePlugin({
__git_commit__: null
})
],
devServer: {
client: false,
webSocketServer: false,
magicHtml: false,
liveReload: false,
hot: false,
https: true,
port: 8000,
compress: true,
allowedHosts: [
'.twitch.tv',
'.frankerfacez.com'
],
static: {
directory: path.join(__dirname, 'dev_cdn'),
},
devMiddleware: {
publicPath: '/script/',
},
proxy: {
'**': {
target: 'https://cdn.frankerfacez.com/',
changeOrigin: true
}
},
onBeforeSetupMiddleware(devServer) {
const app = devServer.app;
// Because the headers config option is broken.
app.get('/*', (req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*');
next();
});
app.get('/update_font', (req, res) => {
const proc = exec('npm run font:save');
proc.stdout.on('data', data => {
console.log('FONT>>', data);
});
proc.stderr.on('data', data => {
console.error('FONT>>', data);
});
proc.on('close', code => {
console.log('FONT>> Exited with code', code);
res.redirect(req.headers.referer);
});
});
app.get('/dev_server', (req, res) => {
res.json({
path: process.cwd(),
version: 2
})
});
}
},
output: {
publicPath: '//localhost:8000/script/',
filename: '[name].js',
jsonpFunction: 'ffzWebpackJsonp',
crossOriginLoading: 'anonymous'
}
})