Ver código fonte

Fix wrong path to absolute-path.js

Path should be "./absolute-path.js" not "./.absolute-path.js". This caused webpack to throw an error "/node-modules/swagger-ui-dist/.absolute-path.js doesn't exist"
bubble
Branko Pejić 7 anos atrás
committed by GitHub
pai
commit
01ae2f5605
1 arquivos alterados com 1 adições e 2 exclusões
  1. +1
    -2
      swagger-ui-dist-package/index.js

+ 1
- 2
swagger-ui-dist-package/index.js Ver arquivo

@@ -1,4 +1,3 @@
module.exports.SwaggerUIBundle = require("./swagger-ui-bundle.js")
module.exports.SwaggerUIStandalonePreset = require("./swagger-ui-standalone-preset.js")
module.exports.absolutePath = require("./.absolute-path.js")

module.exports.absolutePath = require("./absolute-path.js")

Carregando…
Cancelar
Salvar