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"
This commit is contained in:
Branko Pejić
2017-06-17 14:39:32 +02:00
committed by GitHub
parent ebe9f9b7f4
commit 01ae2f5605

View File

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