Creating for AE "Sponsorships". Update file timestamps and remove unused files. Also switched to Svelte with Vite.

This commit is contained in:
Scott Idem
2024-02-06 18:23:01 -05:00
parent c19a315bf2
commit 143265ed9e
55 changed files with 9921 additions and 4327 deletions

13
svelte.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
export default {
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
// for more information about preprocessors
preprocess: vitePreprocess(),
// Disable accessibility warnings
onwarn: (warning, handler) => {
if (warning.code.includes("a11y")) return;
handler(warning);
},
}