mirror of
https://github.com/ente-io/ente.git
synced 2025-08-12 17:20:37 +00:00
Don't consider localhost links as dead
Fixes the following error when building the site (!) Found dead link http://localhost:3000 in file self-hosting/index.md x Build failed in 1.72s If this is expected, you can disable this check via config. Refer: https://vitepress.dev/reference/site-config#ignoredeadlinks
This commit is contained in:
@@ -7,6 +7,7 @@ export default defineConfig({
|
|||||||
description: "Documentation and help for Ente's products",
|
description: "Documentation and help for Ente's products",
|
||||||
head: [["link", { rel: "icon", type: "image/png", href: "/favicon.png" }]],
|
head: [["link", { rel: "icon", type: "image/png", href: "/favicon.png" }]],
|
||||||
cleanUrls: true,
|
cleanUrls: true,
|
||||||
|
ignoreDeadLinks: 'localhostLinks',
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
// We use the default theme (with some CSS color overrides). This
|
// We use the default theme (with some CSS color overrides). This
|
||||||
// themeConfig block can be used to further customize the default theme.
|
// themeConfig block can be used to further customize the default theme.
|
||||||
|
Reference in New Issue
Block a user