Migrate root of application to use a basic Vue app

We'll build from here.
This commit is contained in:
Eli Ribble 2026-03-21 20:47:46 +00:00
parent 5779242f22
commit efece7733f
No known key found for this signature in database
4 changed files with 64 additions and 80 deletions

View file

@ -0,0 +1,20 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nidus Sync</title>
<link rel="icon" href="/static/ico/favicon-sync.ico" type="image/x-icon" />
<link href="{{ bundlePathCSS }}" rel="stylesheet" />
{{ if not .Config.IsProductionEnvironment }}
<script src="/.flogo/injector.js"></script>
{{ end }}
</head>
<body>
<div id="app"></div>
{{ if not .Config.IsProductionEnvironment }}
<div id="flogo"></div>
{{ end }}
<script src="{{ bundlePathJS }}"></script>
</body>
</html>