Conexio amb la api
This commit is contained in:
parent
207c0ba819
commit
b12369cb47
48513 changed files with 7391639 additions and 7 deletions
30
node_modules/webpack/lib/runtime/PublicPathRuntimeModule.js
generated
vendored
Executable file
30
node_modules/webpack/lib/runtime/PublicPathRuntimeModule.js
generated
vendored
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
const RuntimeGlobals = require("../RuntimeGlobals");
|
||||
const RuntimeModule = require("../RuntimeModule");
|
||||
|
||||
class PublicPathRuntimeModule extends RuntimeModule {
|
||||
constructor(publicPath) {
|
||||
super("publicPath", RuntimeModule.STAGE_BASIC);
|
||||
this.publicPath = publicPath;
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {string} runtime code
|
||||
*/
|
||||
generate() {
|
||||
const { compilation, publicPath } = this;
|
||||
|
||||
return `${RuntimeGlobals.publicPath} = ${JSON.stringify(
|
||||
compilation.getPath(publicPath || "", {
|
||||
hash: compilation.hash || "XXXX"
|
||||
})
|
||||
)};`;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PublicPathRuntimeModule;
|
||||
Loading…
Add table
Add a link
Reference in a new issue