Go to file
Chris W e0d6c3a97c fix markdown padding 2023-10-08 19:11:12 -06:00
src fix markdown padding 2023-10-08 19:11:12 -06:00
static/images better line numbers 2023-10-06 21:47:10 -06:00
.eslintignore inital commit 2023-10-06 17:08:13 -06:00
.eslintrc.cjs inital commit 2023-10-06 17:08:13 -06:00
.gitignore inital commit 2023-10-06 17:08:13 -06:00
.npmrc inital commit 2023-10-06 17:08:13 -06:00
.prettierignore inital commit 2023-10-06 17:08:13 -06:00
.prettierrc inital commit 2023-10-06 17:08:13 -06:00
Dockerfile nixpacks stuff 2023-10-06 18:05:12 -06:00
README.md inital commit 2023-10-06 17:08:13 -06:00
nixpacks.toml nixpacks stuff 2023-10-06 18:05:12 -06:00
package-lock.json better line numbers 2023-10-06 21:47:10 -06:00
package.json nixpacks stuff 2023-10-06 18:06:35 -06:00
postcss.config.cjs inital commit 2023-10-06 17:08:13 -06:00
svelte.config.js add dockerfile 2023-10-06 17:26:00 -06:00
tailwind.config.ts inital commit 2023-10-06 17:08:13 -06:00
tsconfig.json inital commit 2023-10-06 17:08:13 -06:00
vite.config.ts inital commit 2023-10-06 17:08:13 -06: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 create svelte@latest

# create a new project in my-app
npm create svelte@latest 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.