auth.andert.me/svelte
2023-07-19 17:19:45 +02:00
..
src fixed import global but and added some POC interactions with LIT 2023-07-19 17:19:45 +02:00
static part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
tests part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.eslintignore part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.eslintrc.cjs part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.gitignore part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.npmrc part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.prettierignore part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
.prettierrc part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
package.json fixed import global but and added some POC interactions with LIT 2023-07-19 17:19:45 +02:00
playwright.config.ts part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
pnpm-lock.yaml fixed import global but and added some POC interactions with LIT 2023-07-19 17:19:45 +02:00
postcss.config.js part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
README.md part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
svelte.config.js fixed import global but and added some POC interactions with LIT 2023-07-19 17:19:45 +02:00
tailwind.config.js part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
tsconfig.json part 1 of moving from next to svelte 2023-07-19 11:42:47 +02:00
vite.config.ts part 1 of moving from next to svelte 2023-07-19 11:42:47 +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 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.