Browse Source

Merge branch 'main' into bugfix/fix-fetching-dividend-and-historical-market-data-in-financial-modeling-prep-service

pull/4416/head
Thomas Kaul 1 month ago
committed by GitHub
parent
commit
6d3f35b3b9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 1
      apps/api/src/middlewares/html-template.middleware.ts

1
CHANGELOG.md

@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed an issue to get dividends in the _Financial Modeling Prep_ service
- Fixed an issue to get historical market data in the _Financial Modeling Prep_ service
- Fixed an issue with serving _Storybook_
## 2.144.0 - 2025-03-06

1
apps/api/src/middlewares/html-template.middleware.ts

@ -129,6 +129,7 @@ export const HtmlTemplateMiddleware = async (
if (
path.startsWith('/api/') ||
path.startsWith('/development/storybook') ||
isFileRequest(path) ||
!environment.production
) {

Loading…
Cancel
Save