You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Renovate Bot 31033939df
continuous-integration/drone/push Build is failing Details
chore(deps): lock file maintenance
3 days ago
src svelte-migrate: updated files 3 months ago
.drone.yml drone: Use linux-arm64 image as this is an arm64 pipeline 1 month ago
.eslintrc.cjs Initial commit 12 months ago
.gitignore Initial commit 12 months ago
.npmrc Initial commit 12 months ago
.prettierrc Initial commit 12 months ago
README.md Initial commit 12 months ago
jsconfig.json Initial commit 12 months ago
package-lock.json chore(deps): lock file maintenance 3 days ago
package.json Update dependency @sveltejs/adapter-static to v2 2 months ago
renovate.json renovate: Enable lock-file maintenance 2 months ago
svelte.config.js Site done 12 months ago
vite.config.js svelte-migrate: updated files 3 months ago

README.md

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.