meta: initial commit (archival)

This commit is contained in:
2023-12-27 13:46:56 -05:00
commit c5c5e57a81
14 changed files with 1849 additions and 0 deletions

14
svelte.config.js Normal file
View File

@@ -0,0 +1,14 @@
import preprocess from "svelte-preprocess";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
},
preprocess: [preprocess({
"postcss": true
})]
};
export default config;