No description
Find a file
2022-07-26 08:30:47 +02:00
src feat: more work done 2022-07-26 08:30:47 +02:00
static feat: more work done 2022-07-26 08:30:47 +02:00
.eslintignore Initial commit 2022-06-08 18:49:55 +02:00
.eslintrc.cjs Initial commit 2022-06-08 18:49:55 +02:00
.gitignore Initial commit 2022-06-08 18:49:55 +02:00
.npmrc Initial commit 2022-06-08 18:49:55 +02:00
.prettierignore feat: more work done 2022-07-26 08:30:47 +02:00
.prettierrc feat: more progress 2022-06-10 18:30:54 +02:00
mdsvex.config.js feat: add new site 2022-07-26 00:25:51 +02:00
modules.d.ts feat: more work done 2022-07-26 08:30:47 +02:00
package.json chore: move headers file 2022-07-26 00:55:45 +02:00
README.md Initial commit 2022-06-08 18:49:55 +02:00
svelte.config.js feat: add new site 2022-07-26 00:25:51 +02:00
tsconfig.json Initial commit 2022-06-08 18:49:55 +02:00
vite.config.js feat: add new site 2022-07-26 00:25:51 +02:00
yarn.lock feat: add new site 2022-07-26 00:25:51 +02:00

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.