mirror of
https://github.com/retspen/webvirtcloud
synced 2026-07-04 18:45:41 +00:00
add swagger-ui css/js files
This commit is contained in:
parent
46514d0897
commit
aeee56fe45
65 changed files with 11671 additions and 0 deletions
14
static/drf-yasg/swagger-ui-dist/absolute-path.js
Normal file
14
static/drf-yasg/swagger-ui-dist/absolute-path.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* getAbsoluteFSPath
|
||||
* @return {string} When run in NodeJS env, returns the absolute path to the current directory
|
||||
* When run outside of NodeJS, will return an error message
|
||||
*/
|
||||
const getAbsoluteFSPath = function () {
|
||||
// detect whether we are running in a browser or nodejs
|
||||
if (typeof module !== "undefined" && module.exports) {
|
||||
return require("path").resolve(__dirname)
|
||||
}
|
||||
throw new Error('getAbsoluteFSPath can only be called within a Nodejs environment');
|
||||
}
|
||||
|
||||
module.exports = getAbsoluteFSPath
|
||||
Loading…
Add table
Add a link
Reference in a new issue