Merge branch 'master' of github.com:Lissy93/dashy into FEATURE/interactive-editor
This commit is contained in:
@@ -66,7 +66,7 @@ const makeMetaTags = (defaultTitle) => ({
|
||||
});
|
||||
|
||||
/* Routing mode, can be either 'hash', 'history' or 'abstract' */
|
||||
const mode = 'history';
|
||||
const mode = appConfig.routingMode || 'history';
|
||||
|
||||
/* List of all routes, props, components and metadata */
|
||||
const router = new Router({
|
||||
|
||||
@@ -187,6 +187,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"routingMode": {
|
||||
"enum": [
|
||||
"hash",
|
||||
"history"
|
||||
],
|
||||
"default": "history",
|
||||
"description": "The Vue routing mode to use, history mode will remove the annoying hash from the URL, but requires some extra config on some systems"
|
||||
},
|
||||
"cssThemes": {
|
||||
"type": "array",
|
||||
"description": "Theme names to be added to the dropdown",
|
||||
|
||||
Reference in New Issue
Block a user