Skip to content
Snippets Groups Projects
Commit e8b942b3 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Make base-path default to "/"

This is the base routing path, which usually is "/" anyway, so a good default.
parent 79b2e9fa
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<body> <body>
<vpu-app lang="de" src="/example.topic.metadata.json" base-path="/"></vpu-app> <vpu-app lang="de" src="/example.topic.metadata.json"></vpu-app>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -53,7 +53,7 @@ class VPUApp extends LitElement { ...@@ -53,7 +53,7 @@ class VPUApp extends LitElement {
this.routes = []; this.routes = [];
this.metadata = {}; this.metadata = {};
this.topic = {}; this.topic = {};
this.basePath = ''; this.basePath = '/';
this._updateAuth = this._updateAuth.bind(this); this._updateAuth = this._updateAuth.bind(this);
this._loginStatus = 'unknown'; this._loginStatus = 'unknown';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment