How to make sveltekit work with deno2?
Sorry for the dumb question but I don't quite understand how to make sveltekit work on deno2 and what the consequences would be.
For example do I still write my +page.server.ts files as usual or would they change? Is there an example project to learn from?
3 Replies
I just tried it like 30 seconds ago to be sure. If you have an existing svelte project, all you have to do is run
deno install
and deno task dev
or whatever the equivalent command is in your projects package.jsonThanks!