mirror of
https://github.com/strapi/strapi.git
synced 2025-07-30 20:39:05 +00:00
10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
'use strict';
|
|
|
|
// needed for regenerator-runtime
|
|
// (ES7 generator support is required by redux-saga)
|
|
require('@babel/polyfill');
|
|
|
|
const noop = () => {};
|
|
// eslint-disable-next-line no-undef
|
|
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });
|