Everything you need to build a Svelte project, powered by create-svelte
;
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
yarn init svelte@next
# create a new project in my-app
yarn init svelte@next my-app
Note: the
@next
is temporary
Once you've created a project and installed dependencies with yarn install
(or pyarn install
or yarn
), start a development server:
yarn run dev
# or start the server and open the app in a new browser tab
yarn run dev -- --open
Before creating a production version of your app, install an adapter for your target environment. Then:
yarn run build
You can preview the built app with
yarn run preview
, regardless of whether you installed an adapter. This should not be used to serve your app in production.