Files
swagger-ui/webpack/core.babel.js
Pontus Wallberg d0ae61f8c9 change globalObject to "this" (#6287)
Co-authored-by: Pontus Wallberg <pontus.wallberg@configura.com>
2020-08-14 10:47:32 -07:00

30 lines
442 B
JavaScript

/**
* @prettier
*/
import configBuilder from "./_config-builder"
const result = configBuilder(
{
minimize: true,
mangle: true,
sourcemaps: true,
includeDependencies: false,
},
{
entry: {
"swagger-ui": [
// "./src/polyfills.js", // TODO: remove?
"./src/index.js",
],
},
output: {
globalObject: "this",
library: "SwaggerUICore",
},
}
)
export default result