Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
36 lines
874 B
Plaintext
36 lines
874 B
Plaintext
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Ivan Kopeykin @vankop
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const RuntimeGlobals = require("../RuntimeGlobals");
|
|
const RuntimeModule = require("../RuntimeModule");
|
|
|
|
/** @typedef {import("../../declarations/WebpackOptions").EntryDescriptionNormalized} EntryDescription */
|
|
/** @typedef {import("../Chunk")} Chunk */
|
|
|
|
class BaseUriRuntimeModule extends RuntimeModule {
|
|
constructor() {
|
|
super("base uri", RuntimeModule.STAGE_ATTACH);
|
|
}
|
|
|
|
/**
|
|
* @returns {string | null} runtime code
|
|
*/
|
|
generate() {
|
|
const chunk = /** @type {Chunk} */ (this.chunk);
|
|
const options =
|
|
/** @type {EntryDescription} */
|
|
(chunk.getEntryOptions());
|
|
return `${RuntimeGlobals.baseURI} = ${
|
|
options.baseUri === undefined
|
|
? "undefined"
|
|
: JSON.stringify(options.baseUri)
|
|
};`;
|
|
}
|
|
}
|
|
|
|
module.exports = BaseUriRuntimeModule;
|