From 51c70bbfb90d4f90d0bbbd127566ec1ebb599605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Thu, 27 May 2021 15:07:13 -0400 Subject: [PATCH] fix: Use absolute path resolution for AppManifest Enables path-based deep-linking --- src/Uno.UI/ts/WindowManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uno.UI/ts/WindowManager.ts b/src/Uno.UI/ts/WindowManager.ts index d0421c7011b8..1c4787e01df1 100644 --- a/src/Uno.UI/ts/WindowManager.ts +++ b/src/Uno.UI/ts/WindowManager.ts @@ -2033,7 +2033,7 @@ namespace Uno.UI { if (typeof define === "function") { define( - [`${config.uno_app_base}/AppManifest`], + [`./AppManifest.js`], () => { } );