1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Revert "fix: oas being overriden"

This reverts commit e03bac9e64.
This commit is contained in:
Ivar Conradi Østhus 2021-08-27 12:08:26 +02:00
parent e03bac9e64
commit d0d49051ac
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09
2 changed files with 2 additions and 4 deletions

View File

@ -30,13 +30,12 @@
"prestart:dev": "yarn run clean",
"start:dev": "NODE_ENV=development tsc-watch --onSuccess \"node dist/server-dev.js\"",
"copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",
"copy-docs": "copyfiles -u 1 websitev2/docs/api/oas/* dist",
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
"lint": "eslint ./src",
"prebuild:watch": "yarn run clean",
"build:watch": "tsc -w",
"prebuild": "yarn run clean",
"build": "yarn run copy-docs && yarn run copy-templates && tsc --pretty",
"build": "yarn run copy-templates && tsc --pretty",
"prepare": "yarn run build",
"test": "NODE_ENV=test PORT=4243 jest",
"test:docker": "./scripts/docker-postgres.sh",

View File

@ -74,8 +74,7 @@ export default function getApp(
app.use(baseUriPath, express.static(publicFolder, { index: false }));
if (config.enableOAS) {
const oasPath = path.resolve(__dirname, '../docs/api/oas');
app.use(`${baseUriPath}/oas`, express.static(oasPath));
app.use(`${baseUriPath}/oas`, express.static('docs/api/oas'));
}
switch (config.authentication.type) {
case IAuthType.OPEN_SOURCE: {