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

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
})