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 @@
<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>
</html>
\ No newline at end of file
......@@ -53,7 +53,7 @@ class VPUApp extends LitElement {
this.routes = [];
this.metadata = {};
this.topic = {};
this.basePath = '';
this.basePath = '/';
this._updateAuth = this._updateAuth.bind(this);
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