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

12
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,12 @@
const config = {
mode: "jit",
purge: [
"./src/**/*.{html,js,svelte,ts}",
],
theme: {
extend: {},
},
plugins: [],
};
module.exports = config;