frontend: install and configure mdsvex

This commit is contained in:
dumbmoron
2024-06-29 17:58:00 +00:00
parent a856983810
commit 3aa17733d1
4 changed files with 98 additions and 550 deletions

11
web/src/app.d.ts vendored
View File

@@ -1,3 +1,14 @@
// needed so that changelog files are appropriately
// typed as svelte components
declare module '*.md' {
import type { SvelteComponentDev } from 'svelte/internal';
export default class Comp extends SvelteComponentDev {
$$prop_def: {};
}
export const metadata: Record<string, any>;
}
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {