template-saas/apps/backend/node_modules/swagger-ui-dist
rckrdmrd 26f0e52ca7 feat: Initial commit - template-saas
Template base para proyectos SaaS multi-tenant.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React/Vite)
- apps/database (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:24 -06:00
..
absolute-path.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
favicon-16x16.png feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
favicon-32x32.png feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
index.css feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
index.html feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
index.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
LICENSE feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
log.bundle-sizes.swagger-ui.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
log.es-bundle-core-sizes.swagger-ui.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
log.es-bundle-sizes.swagger-ui.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
NOTICE feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
oauth2-redirect.html feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
oauth2-redirect.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
package.json feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
README.md feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-initializer.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-bundle.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-bundle.js.LICENSE.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-bundle.js.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle-core.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle-core.js.LICENSE.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle-core.js.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle.js.LICENSE.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-es-bundle.js.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-standalone-preset.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-standalone-preset.js.LICENSE.txt feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui-standalone-preset.js.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui.css feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui.css.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui.js feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00
swagger-ui.js.map feat: Initial commit - template-saas 2026-01-07 04:41:24 -06:00

Swagger UI Dist

NPM version

Anonymized analytics

SwaggerUI Dist uses Scarf to collect anonymized installation analytics. These analytics help support the maintainers of this library and ONLY run during installation. To opt out, you can set the scarfSettings.enabled field to false in your project's package.json:

// package.json
{
  // ...
  "scarfSettings": {
    "enabled": false
  }
  // ...
}

Alternatively, you can set the environment variable SCARF_ANALYTICS to false as part of the environment that installs your npm packages, e.g., SCARF_ANALYTICS=false npm install.

API

This module, swagger-ui-dist, exposes Swagger-UI's entire dist folder as a dependency-free npm module. Use swagger-ui instead, if you'd like to have npm install dependencies for you.

SwaggerUIBundle and SwaggerUIStandalonePreset can be imported:

  import { SwaggerUIBundle, SwaggerUIStandalonePreset } from "swagger-ui-dist"

To get an absolute path to this directory for static file serving, use the exported getAbsoluteFSPath method:

const swaggerUiAssetPath = require("swagger-ui-dist").getAbsoluteFSPath()

// then instantiate server that serves files from the swaggerUiAssetPath

For anything else, check the Swagger-UI repository.