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:
parent
cecdd96863
commit
e03bac9e64
@ -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",
|
||||
|
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user