Initialize web application via create-cloudflare CLI

Details:
  C3 = create-cloudflare@2.66.4
  project name = space-stream
  framework = svelte
  framework cli = sv@0.12.4
  package manager = bun@1.3.11
  wrangler = wrangler@4.81.1
  git = 2.53.0
This commit is contained in:
2026-04-11 02:16:57 -07:00
commit fde245058e
23 changed files with 13755 additions and 0 deletions

13
svelte.config.js Normal file
View File

@@ -0,0 +1,13 @@
import adapter from "@sveltejs/adapter-cloudflare";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
};
export default config;