diff options
Diffstat (limited to 'src/webpack')
-rw-r--r-- | src/webpack/patchWebpack.ts | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/src/webpack/patchWebpack.ts b/src/webpack/patchWebpack.ts index f33ddc3..f422372 100644 --- a/src/webpack/patchWebpack.ts +++ b/src/webpack/patchWebpack.ts @@ -28,21 +28,27 @@ let webpackChunk: any[]; const logger = new Logger("WebpackInterceptor", "#8caaee"); -Object.defineProperty(window, WEBPACK_CHUNK, { - get: () => webpackChunk, - set: v => { - if (v?.push !== Array.prototype.push) { - logger.info(`Patching ${WEBPACK_CHUNK}.push`); - _initWebpack(v); - patchPush(); - // @ts-ignore - delete window[WEBPACK_CHUNK]; - window[WEBPACK_CHUNK] = v; - } - webpackChunk = v; - }, - configurable: true -}); +if (window[WEBPACK_CHUNK]) { + logger.info(`Patching ${WEBPACK_CHUNK}.push (was already existant, likely from cache!)`); + _initWebpack(window[WEBPACK_CHUNK]); + patchPush(); +} else { + Object.defineProperty(window, WEBPACK_CHUNK, { + get: () => webpackChunk, + set: v => { + if (v?.push !== Array.prototype.push) { + logger.info(`Patching ${WEBPACK_CHUNK}.push`); + _initWebpack(v); + patchPush(); + // @ts-ignore + delete window[WEBPACK_CHUNK]; + window[WEBPACK_CHUNK] = v; + } + webpackChunk = v; + }, + configurable: true + }); +} function patchPush() { function handlePush(chunk: any) { |