Guest User

Untitled

a guest
Dec 13th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. webpack: (config, { dev }) => {
  2. var oldEntry = config.entry;
  3. config.entry = function () {
  4. return oldEntry().then(function (entries) {
  5. entries['main.js'].unshift('@babel/polyfill');
  6. return entries;
  7. });
  8. }
  9.  
  10. return config;}
Add Comment
Please, Sign In to add comment