We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aeab37 commit 3b1a972Copy full SHA for 3b1a972
2 files changed
webui/build-sitemap.js
@@ -23,6 +23,10 @@ const pages = [
23
file: './src/views/Ldap.vue',
24
url: 'https://mokapi.io/ldap'
25
},
26
+ {
27
+ file: './src/views/DashboardView.vue',
28
+ url: 'https://mokapi.io/dashboard-demo'
29
+ },
30
]
31
32
const xmlTemplate = `
webui/ssg/index.js
@@ -12,7 +12,7 @@ const Server = require('./server');
12
const browser = await chromium.launch();
13
14
async function crawl(url) {
15
- if (!url.href.startsWith('http://localhost:8025') || url.href.startsWith('http://localhost:8025/dashboard')) {
+ if (!url.href.startsWith('http://localhost:8025') || url.href === 'http://localhost:8025/dashboard') {
16
return
17
}
18
if (visited.has(url.pathname)) {
0 commit comments