From edba53be297553c67648dcae01abf4e3b220b296 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 7 Jun 2025 21:54:09 +0200 Subject: [PATCH] Bugfix/fix missing assetlinks.json for TWA (#4855) * Fix command for copying assetlinks.json * Update changelog --- CHANGELOG.md | 6 ++++++ apps/client/project.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3150e6847..c7e8d3d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), 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 ### Added diff --git a/apps/client/project.json b/apps/client/project.json index 0bc04556a..4bb7fe296 100644 --- a/apps/client/project.json +++ b/apps/client/project.json @@ -185,7 +185,7 @@ "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"