const path = require('path'); const common = require('./webpack.config.common'); const genConfig = ({ entry, filename, library, libraryTarget, }) => ({ ...common, mode: 'development', entry, output: { filename, library, libraryTarget, }, devServer: { allowedHosts: ['localhost', '.gitpod.io'], }, }); module.exports = [ genConfig({ entry: path.resolve(__dirname, '..', 'src', 'index.js'), filename: 'ffmpeg.dev.js', library: 'FFmpeg', libraryTarget: 'umd', }), ];