Last active
July 7, 2017 21:00
-
-
Save squadwuschel/9c433d093e3a9c83b8ac762b31c301ec to your computer and use it in GitHub Desktop.
webpack.common.js in der die BaseUrl angepasst wird
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (options) { | |
isProd = options.env === 'production'; | |
console.log("Webpack Common Options"); | |
console.log(options); | |
if(options["appname"] !== undefined) { | |
METADATA.baseUrl = options.appname; | |
} | |
return { | |
... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment