This commit is contained in:
Shibly Teknologi Solusi
2026-05-23 01:35:10 +07:00
parent 42cf86d9f9
commit eb357562fd
2 changed files with 17 additions and 13 deletions

View File

@ -16,6 +16,7 @@ export class RoutePublic {
app.put('/api/logout/:refresh_token', AuthController.logout)
app.put('/api/renew_token/:refresh_token/:application', AuthController.renewToken)
app.use('/static', express.static(path.join(__dirname, 'assets')));
app.use('/assets', express.static(path.join(process.cwd(), 'assets')));
}
}