Update README.md with project setup, development instructions, environment variables, and build process for Svelte 5 and SvelteKit integration.

This commit is contained in:
eewing
2026-02-24 09:12:30 -06:00
parent 96b6999523
commit eb18419089
29 changed files with 1386 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
host: true
}
});