We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b44bc commit df704c4Copy full SHA for df704c4
docusaurus/website/scripts/algolia/crawl.ts
@@ -151,7 +151,8 @@ const localhostUrls = urls
151
.map((url) => url.replace('https://grafana-dev.com', 'http://localhost:3000'));
152
153
// Run the crawler and wait for it to finish.
154
-const url = ['http://localhost:3000/developers/plugin-tools/how-to-guides/extend-configurations/'];
155
-await crawler.run(url);
+// Can pass individual urls for testing purposes.
+// const url = ['http://localhost:3000/developers/plugin-tools/how-to-guides/extend-configurations/'];
156
+await crawler.run(localhostUrls);
157
158
log.info('Crawler finished.');
0 commit comments