Sveltekit SEO component to save your time
Is there any good reson why some things are only shown if there is a title set? https://github.com/TheDahoom/Sveltekit-seo/blob/bcc9433a15e5a93f29ee8f47cee1757c9f22886f/SEO.svelte#L28-L36 To me, it would make more sense if it looked like this: ```svelte <!-- Only the tilte is depending on the title to be set --> {#if title !== ""} <title>{title}</title> {/if} <!-- This should not be dependent on the title --> {#if imageURL} <meta name="robots" content={index ? "index, follow, max-image-preview:large" : "noindex"}> {:else} <meta name="robots" content={index ? "index, follow" : "noindex"}> {/if} <!-- This should defineltey not be dependent on the title --> <link rel="canonical" content="{canonical === '' ? $page.url : canonical}"> ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by fabianmossberg and has received 1 comments.