This is a near total rewrite of the excellent Svelte Calendar. It provides:
Roadmap:
Due to the way dayjs is packaged, the following configuration is required to get this working with SvelteKit:
const config = {
kit: {
target: "#svelte",
vite: {
ssr: {
noExternal: [ 'dayjs' ]
}
}
}
}
Tests written in uvu
npm run test