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

fix: oas being overriden

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

View File

@ -30,12 +30,13 @@
"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-templates && tsc --pretty",
"build": "yarn run copy-docs && 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,7 +74,8 @@ export default function getApp(
app.use(baseUriPath, express.static(publicFolder, { index: false }));
if (config.enableOAS) {
app.use(`${baseUriPath}/oas`, express.static('docs/api/oas'));
const oasPath = path.resolve(__dirname, '../docs/api/oas');
app.use(`${baseUriPath}/oas`, express.static(oasPath));
}
switch (config.authentication.type) {
case IAuthType.OPEN_SOURCE: {