Browse Source
Bugfix/fix missing assetlinks.json for TWA (part 2) (#4938)
* Fix missing assetlinks.json
* Update changelog
pull/4940/head
Thomas Kaul
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/app.module.ts
|
|
@ -31,6 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Improved the language localization for Turkish (`tr`) |
|
|
|
- Upgraded the _Stripe_ dependencies |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed missing `/.well-known/assetlinks.json` for TWA |
|
|
|
|
|
|
|
## 2.170.0 - 2025-06-11 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -103,7 +103,7 @@ import { UserModule } from './user/user.module'; |
|
|
|
RedisCacheModule, |
|
|
|
ScheduleModule.forRoot(), |
|
|
|
ServeStaticModule.forRoot({ |
|
|
|
exclude: ['/api/*wildcard', '/sitemap.xml'], |
|
|
|
exclude: ['/.well-known/*wildcard', '/api/*wildcard', '/sitemap.xml'], |
|
|
|
rootPath: join(__dirname, '..', 'client'), |
|
|
|
serveStaticOptions: { |
|
|
|
setHeaders: (res) => { |
|
|
@ -126,6 +126,10 @@ import { UserModule } from './user/user.module'; |
|
|
|
} |
|
|
|
} |
|
|
|
}), |
|
|
|
ServeStaticModule.forRoot({ |
|
|
|
rootPath: join(__dirname, '..', 'client', '.well-known'), |
|
|
|
serveRoot: '/.well-known' |
|
|
|
}), |
|
|
|
SitemapModule, |
|
|
|
SubscriptionModule, |
|
|
|
SymbolModule, |
|
|
|