Closed mpellegrini closed 6 months ago
Using:
import { type HTMLAttributes } from 'svelte/elements'
was causing failures starting SvelteKit app, needed to change to:
import type { HTMLAttributes } from 'svelte/elements'
Using:
import { type HTMLAttributes } from 'svelte/elements'
was causing failures starting SvelteKit app, needed to change to:
import type { HTMLAttributes } from 'svelte/elements'