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.
 
 
 
 

25 lines
356 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. library: "SwaggerUIStandalonePreset",
  17. },
  18. }
  19. )
  20. export default result