Update README.md to reflect new project structure and instructions for Svelte project setup and development.

This commit is contained in:
eewing
2026-03-11 14:26:24 -05:00
parent 67bc59fd2f
commit 6658e86994
22 changed files with 1161 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
import cloudflare from '@sveltejs/adapter-cloudflare';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: cloudflare({
// Cloudflare Pages with Functions (default)
platformProxy: {
enabled: true
}
})
}
};
export default config;