├── .gitignore ├── README.md ├── bun.lockb ├── package.json ├── src ├── app.html └── routes │ ├── +page.svelte │ └── api │ └── hello │ └── +server.ts ├── static └── favicon.png ├── svelte.config.js ├── tsconfig.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/package.json -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/src/app.html -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/api/hello/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/src/routes/api/hello/+server.ts -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOtterlord/sveltekit-bun-template/HEAD/vite.config.js --------------------------------------------------------------------------------