Browse Source
Bugfix/fix missing assetlinks.json for TWA (#4855)
* Fix command for copying assetlinks.json
* Update changelog
pull/4858/head^2
Thomas Kaul
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/project.json
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed missing `/.well-known/assetlinks.json` for TWA |
|
|
|
|
|
|
|
|
## 2.168.0 - 2025-06-07 |
|
|
## 2.168.0 - 2025-06-07 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -185,7 +185,7 @@ |
|
|
"command": "shx cp -r apps/client/src/assets/* dist/apps/client/assets" |
|
|
"command": "shx cp -r apps/client/src/assets/* dist/apps/client/assets" |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
"command": "shx cp -r apps/client/src/assets/.well-known/* dist/apps/client/.well-known" |
|
|
"command": "shx cp -r apps/client/src/assets/.well-known/assetlinks.json dist/apps/client/.well-known" |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
"command": "shx cp apps/client/src/assets/favicon.ico dist/apps/client" |
|
|
"command": "shx cp apps/client/src/assets/favicon.ico dist/apps/client" |
|
|