From a7fd8a40896e3f00a5eff4a8a512aefb44e6ee0a Mon Sep 17 00:00:00 2001 From: primakov Date: Fri, 24 Feb 2023 16:18:50 +0300 Subject: [PATCH] fix no tag logic --- src/main.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.ts b/src/main.ts index 4c0e131..b28b8c4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -22,6 +22,8 @@ let mainMountElement = document.getElementById('app'); if (!mainMountElement) { mainMountElement = document.createElement('div'); mainMountElement.id = 'app'; + + document.body.append(mainMountElement); } export default async ({ apps: rawApps, navigations, config, features }) => {