mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 03:50:26 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
'use strict';
|
|
|
|
// needed for regenerator-runtime
|
|
require('@babel/polyfill');
|
|
|
|
const noop = () => {};
|
|
// eslint-disable-next-line no-undef
|
|
Object.defineProperty(window, 'scrollTo', { value: noop, writable: true });
|