1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Update polyfills (#5814)

#5521
This commit is contained in:
陈雨童 2018-12-04 21:53:24 +08:00 committed by Tim Neutkens
parent 38db893a33
commit 7ffcb0bf86

View file

@ -2,6 +2,7 @@
// core-js comes with Next.js. So, you can import it like below
import includes from 'core-js/library/fn/string/virtual/includes'
import repeat from 'core-js/library/fn/string/virtual/repeat'
import assign from 'core-js/library/fn/object/assign'
// Add your polyfills
// This files runs at the very beginning (even before React and Next.js core)
@ -9,3 +10,4 @@ console.log('Load your polyfills')
String.prototype.includes = includes
String.prototype.repeat = repeat
Object.assign = assign