We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deno 2 compile doesn't work on svelkit issue (with workarounds): denoland/deno#26155
see my comment: denoland/deno#26155 (comment)
sveltejs/cli#214 (comment)
deno run -A npm:sv@latest create deno-project
SvelteKit at deno: https://deno.com/blog/web-frameworks-on-deno#sveltekit
deno adapter for SvelteKit: https://github.com/pluvial/svelte-adapter-deno
repo with instructions: https://github.com/cotyhamilton/deno-sveltekit?tab=readme-ov-file
workaround for $xxx paths: denoland/deno#17248 (comment)
// deno.json or deno.jsonc { "imports": { "$lib": "./src/lib", "$lib/": "./src/lib/", "$env/static/public": "./.svelte-kit/ambient.d.ts", "$env/static/private": "./.svelte-kit/ambient.d.ts", "$env/dynamic/public": "./.svelte-kit/ambient.d.ts", "$env/dynamic/private": "./.svelte-kit/ambient.d.ts", "$app/forms": "../../node_modules/@sveltejs/kit/types/index.d.ts", "$app/environment": "../../node_modules/@sveltejs/kit/types/index.d.ts", "$app/navigation": "../../node_modules/@sveltejs/kit/types/index.d.ts", "$app/server": "../../node_modules/@sveltejs/kit/types/index.d.ts", "$app/stores": "../../node_modules/@sveltejs/kit/types/index.d.ts" } }
The text was updated successfully, but these errors were encountered:
deno run -A --reload npm:sv create encuestas-deno cd encuestas-deno deno install --allow-scripts=npm:@sveltejs/[email protected]
Sorry, something went wrong.
bunx sv create my-app cd my-app bun run dev
to compile
bun run build bun build build/index.js --compile --outfile server ./server Listening on 0.0.0.0:3000
No branches or pull requests
deno:
deno 2 compile doesn't work on svelkit issue (with workarounds): denoland/deno#26155
see my comment: denoland/deno#26155 (comment)
sveltejs/cli#214 (comment)
SvelteKit at deno: https://deno.com/blog/web-frameworks-on-deno#sveltekit
deno adapter for SvelteKit: https://github.com/pluvial/svelte-adapter-deno
repo with instructions: https://github.com/cotyhamilton/deno-sveltekit?tab=readme-ov-file
workaround for $xxx paths: denoland/deno#17248 (comment)
The text was updated successfully, but these errors were encountered: