1234567891011121314151617181920212223242526 |
- /**
- * @prettier
- */
- import configBuilder from "./_config-builder"
- const result = configBuilder(
- {
- minimize: true,
- mangle: true,
- sourcemaps: true,
- },
- {
- entry: {
- "swagger-ui-standalone-preset": ["./src/standalone/index.js"],
- },
- output: {
- globalObject: "this",
- library: "SwaggerUIStandalonePreset",
- },
- }
- )
- export default result
|