mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
parent
38db893a33
commit
7ffcb0bf86
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue