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.
 
 
 
 

29 line
392 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. includeDependencies: false,
  11. },
  12. {
  13. entry: {
  14. "swagger-ui": [
  15. "./src/index.js",
  16. ],
  17. },
  18. output: {
  19. globalObject: "this",
  20. library: "SwaggerUICore",
  21. },
  22. }
  23. )
  24. export default result