Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
multi-event-cfp.bitkit.dk
httpdocs
node_modules
webpack
lib
prefetch
File Content:
ChunkPreloadTriggerRuntimeModule.js
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const RuntimeModule = require("../RuntimeModule"); const Template = require("../Template"); /** @typedef {import("../RuntimeTemplate")} RuntimeTemplate */ class ChunkPreloadTriggerRuntimeModule extends RuntimeModule { /** * @param {Record<string|number, (string|number)[]>} chunkMap map from chunk to chunks */ constructor(chunkMap) { super(`chunk preload trigger`, RuntimeModule.STAGE_TRIGGER); this.chunkMap = chunkMap; } /** * @returns {string} runtime code */ generate() { const { chunkMap } = this; const { runtimeTemplate } = this.compilation; const body = [ "var chunks = chunkToChildrenMap[chunkId];", `Array.isArray(chunks) && chunks.map(${RuntimeGlobals.preloadChunk});` ]; return Template.asString([ Template.asString([ `var chunkToChildrenMap = ${JSON.stringify(chunkMap, null, "\t")};`, `${ RuntimeGlobals.ensureChunkHandlers }.preload = ${runtimeTemplate.basicFunction("chunkId", body)};` ]) ]); } } module.exports = ChunkPreloadTriggerRuntimeModule;
Edit
Download
Unzip
Chmod
Delete