Procházet zdrojové kódy

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ć před 7 roky
committed by GitHub
rodič
revize
01ae2f5605
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. +1
    -2
      swagger-ui-dist-package/index.js

+ 1
- 2
swagger-ui-dist-package/index.js Zobrazit soubor

@@ -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")

Načítá se…
Zrušit
Uložit