您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

25 行
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