initial commit

This commit is contained in:
2021-10-17 21:05:23 -07:00
commit d0aaba7a7d
17 changed files with 1539 additions and 0 deletions

13
svelte.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { mdsvex } from "mdsvex";
const config = {
extensions: ['.svelte', '.svx'],
preprocess: mdsvex(),
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}
};
export default config;