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 add4896 commit 78b0adaCopy full SHA for 78b0ada
astro.config.ts
@@ -59,7 +59,7 @@ async function autogenStyles() {
59
const sidebar = await autogenSections();
60
const customCss = await autogenStyles();
61
62
-const runLinkCheck =
+const RUN_LINK_CHECK =
63
process.env.RUN_LINK_CHECK?.toLowerCase() === "true" || false;
64
const ENABLE_LAST_MOD_IN_SITEMAP =
65
process.env.ENABLE_LAST_MOD_IN_SITEMAP?.toLowerCase() === "true";
@@ -195,7 +195,7 @@ export default defineConfig({
195
customCss,
196
pagination: false,
197
plugins: [
198
- ...(runLinkCheck
+ ...(RUN_LINK_CHECK
199
? [
200
starlightLinksValidator({
201
errorOnInvalidHashes: false,
0 commit comments