Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

29 řádky
424 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: true,
  11. },
  12. {
  13. entry: {
  14. "swagger-ui-bundle": [
  15. "./src/polyfills.js", // TODO: remove?
  16. "./src/core/index.js",
  17. ],
  18. },
  19. output: {
  20. library: "SwaggerUIBundle",
  21. },
  22. }
  23. )
  24. export default result