Go to file
Marko 80267ae991
Maybe? fix Cloudflare Pages
2022-08-08 15:09:26 +02:00
src Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
static Initial commit 2021-06-04 03:18:42 +03:00
.eslintignore Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
.eslintrc.cjs Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
.gitignore Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
.npmrc Initial commit 2021-06-04 03:18:42 +03:00
.prettierignore Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
.prettierrc Initial commit 2021-06-04 03:18:42 +03:00
LICENSE Initial commit 2021-06-04 03:18:42 +03:00
README.md Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
package.json Add static adapter 2022-08-08 14:57:49 +02:00
pnpm-lock.yaml Add static adapter 2022-08-08 14:57:49 +02:00
svelte.config.js Maybe? fix Cloudflare Pages 2022-08-08 15:09:26 +02:00
tsconfig.json Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00
vite.config.js Fix for latest SvelteKit and some other minor things 2022-08-08 14:54:22 +02:00

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.