mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
import SwaggerUI from 'swagger-ui'
|
|
import 'swagger-ui/dist/swagger-ui.css';
|
|
|
|
const spec = require('./swagger-config.yaml');
|
|
|
|
const ui = SwaggerUI({
|
|
spec,
|
|
dom_id: '#swagger',
|
|
});
|
|
|
|
ui.initOAuth({
|
|
appName: "Swagger UI Webpack Demo",
|
|
// See https://demo.identityserver.io/ for configuration details.
|
|
clientId: 'implicit'
|
|
});
|