mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
97cf4281dc
* Add an example showing how to use polyfills. * Add some example polyfills. * Fix a typo.
14 lines
434 B
JavaScript
14 lines
434 B
JavaScript
/* eslint no-extend-native: 0 */
|
|
|
|
// Add your polyfills
|
|
// This files runs at the very beginning (even before React and Next.js core)
|
|
|
|
console.log('Load your polyfills')
|
|
|
|
// 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'
|
|
|
|
String.prototype.includes = includes
|
|
String.prototype.repeat = repeat
|