├── .gitignore ├── AGENTS.md ├── README.md ├── apps ├── backend │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── hooks.server.ts │ │ ├── lib │ │ │ ├── all.remote.ts │ │ │ ├── assets │ │ │ │ └── favicon.svg │ │ │ ├── index.ts │ │ │ └── server │ │ │ │ └── api.ts │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── robots.txt │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── frontend │ ├── .env │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── lib │ │ │ ├── all.remote.ts │ │ │ ├── assets │ │ │ │ └── favicon.svg │ │ │ └── index.ts │ │ ├── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── service-worker.ts │ ├── static │ │ └── robots.txt │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts └── tests │ ├── package.json │ ├── playwright.config.ts │ ├── src │ ├── api │ │ ├── prerender.test.ts │ │ └── remote-functions.test.ts │ ├── e2e │ │ └── remote-functions.spec.ts │ ├── setup │ │ └── global.ts │ └── utils │ │ └── standalone-start.mjs │ ├── test-results │ └── .last-run.json │ ├── tsconfig.json │ └── vitest.config.ts ├── package.json ├── patches └── @sveltejs__kit.patch ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/AGENTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/.gitignore -------------------------------------------------------------------------------- /apps/backend/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /apps/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/README.md -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/pnpm-lock.yaml -------------------------------------------------------------------------------- /apps/backend/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/app.d.ts -------------------------------------------------------------------------------- /apps/backend/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/app.html -------------------------------------------------------------------------------- /apps/backend/src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/hooks.server.ts -------------------------------------------------------------------------------- /apps/backend/src/lib/all.remote.ts: -------------------------------------------------------------------------------- 1 | export * from './server/api'; -------------------------------------------------------------------------------- /apps/backend/src/lib/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/lib/assets/favicon.svg -------------------------------------------------------------------------------- /apps/backend/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/lib/index.ts -------------------------------------------------------------------------------- /apps/backend/src/lib/server/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/lib/server/api.ts -------------------------------------------------------------------------------- /apps/backend/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/routes/+layout.svelte -------------------------------------------------------------------------------- /apps/backend/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/src/routes/+page.svelte -------------------------------------------------------------------------------- /apps/backend/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/static/robots.txt -------------------------------------------------------------------------------- /apps/backend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/svelte.config.js -------------------------------------------------------------------------------- /apps/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/tsconfig.json -------------------------------------------------------------------------------- /apps/backend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/backend/vite.config.ts -------------------------------------------------------------------------------- /apps/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/.env -------------------------------------------------------------------------------- /apps/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/.gitignore -------------------------------------------------------------------------------- /apps/frontend/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /apps/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/README.md -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /apps/frontend/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/app.d.ts -------------------------------------------------------------------------------- /apps/frontend/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/app.html -------------------------------------------------------------------------------- /apps/frontend/src/lib/all.remote.ts: -------------------------------------------------------------------------------- 1 | export * from '$backend/all.remote'; -------------------------------------------------------------------------------- /apps/frontend/src/lib/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/lib/assets/favicon.svg -------------------------------------------------------------------------------- /apps/frontend/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/lib/index.ts -------------------------------------------------------------------------------- /apps/frontend/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/routes/+layout.svelte -------------------------------------------------------------------------------- /apps/frontend/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/routes/+page.svelte -------------------------------------------------------------------------------- /apps/frontend/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/routes/+page.ts -------------------------------------------------------------------------------- /apps/frontend/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/src/service-worker.ts -------------------------------------------------------------------------------- /apps/frontend/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/static/robots.txt -------------------------------------------------------------------------------- /apps/frontend/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/svelte.config.js -------------------------------------------------------------------------------- /apps/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/tsconfig.json -------------------------------------------------------------------------------- /apps/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/frontend/vite.config.ts -------------------------------------------------------------------------------- /apps/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/package.json -------------------------------------------------------------------------------- /apps/tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/playwright.config.ts -------------------------------------------------------------------------------- /apps/tests/src/api/prerender.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/src/api/prerender.test.ts -------------------------------------------------------------------------------- /apps/tests/src/api/remote-functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/src/api/remote-functions.test.ts -------------------------------------------------------------------------------- /apps/tests/src/e2e/remote-functions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/src/e2e/remote-functions.spec.ts -------------------------------------------------------------------------------- /apps/tests/src/setup/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/src/setup/global.ts -------------------------------------------------------------------------------- /apps/tests/src/utils/standalone-start.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/src/utils/standalone-start.mjs -------------------------------------------------------------------------------- /apps/tests/test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/test-results/.last-run.json -------------------------------------------------------------------------------- /apps/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/tsconfig.json -------------------------------------------------------------------------------- /apps/tests/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/apps/tests/vitest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/package.json -------------------------------------------------------------------------------- /patches/@sveltejs__kit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/patches/@sveltejs__kit.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robinbraemer/sveltekit-static-to-remote/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------