mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 18:05:07 +00:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
// needed for regenerator-runtime
|
|
// (ES7 generator support is required by redux-saga)
|
|
require('@babel/polyfill');
|
|
|
|
const noop = () => {};
|
|
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });
|