Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

standalone.babel.js 384 B

12345678910111213141516171819202122232425
  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