You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
384 B

  1. /**
  2. * @prettier
  3. */
  4. import configBuilder from "./_config-builder"
  5. const result = configBuilder(
  6. {
  7. minimize: true,
  8. mangle: true,
  9. sourcemaps: true,
  10. },
  11. {
  12. entry: {
  13. "swagger-ui-standalone-preset": ["./src/standalone/index.js"],
  14. },
  15. output: {
  16. globalObject: "this",
  17. library: "SwaggerUIStandalonePreset",
  18. },
  19. }
  20. )
  21. export default result