aeternity / jitsi-meet

Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
https://jitsi.org/meet
Apache License 2.0
0 stars 1 forks source link

Update webpack config bundle size #43

Open mradkov opened 4 years ago

mradkov commented 4 years ago

Quick fix was introduced #40 to bump the build size. But this should be dealt with at some point.

https://github.com/aeternity/jitsi-meet/pull/40#pullrequestreview-437400805

shapkarin commented 4 years ago

@mradkov we can reduce the bundle size with that approach https://www.npmjs.com/package/babel-plugin-lodash make the lodash imports transform from

import { times } from 'lodash' 

to the

import times from 'lodash/times'
shapkarin commented 4 years ago

Also we can use even the lodash-es