|
|
|
|
|
by pcthrowaway
1098 days ago
|
|
I can't help you with a docker setup, but if I'd highly recommend Vite for standing up a working Svelte dev environment (or Sveltekit, or React, or Next for that matter): https://vitejs.dev/guide/ You'll be up and running in seconds. This is all you need to know: # npm 6.x
npm create vite@latest my-svelte-app --template svelte
# npm 7+, extra double-dash is needed:
npm create vite@latest my-svelte-app -- --template svelte
(if you're looking for sveltekit it's the same command, you'll just select sveltekit in the prompt) |
|