Go to file
I-Have-An-Issue 7f59d0115a
Update deploy.yml
2022-10-02 02:42:14 +00:00
.github/workflows Update deploy.yml 2022-10-02 02:42:14 +00:00
src Temporary notice 2022-10-01 22:15:28 -04:00
static Inital commit 2022-10-01 21:13:54 -04:00
.gitignore Inital commit 2022-10-01 21:13:54 -04:00
.npmrc Inital commit 2022-10-01 21:13:54 -04:00
.prettierignore Inital commit 2022-10-01 21:13:54 -04:00
.prettierrc Inital commit 2022-10-01 21:13:54 -04:00
README.md Inital commit 2022-10-01 21:13:54 -04:00
package-lock.json Tailwind setup 2022-10-01 21:24:34 -04:00
package.json Add start script 2022-10-01 22:08:38 -04:00
postcss.config.cjs Tailwind setup 2022-10-01 21:24:34 -04:00
svelte.config.js Tailwind setup 2022-10-01 21:24:34 -04:00
tailwind.config.cjs Tailwind setup 2022-10-01 21:24:34 -04:00
vite.config.js Inital commit 2022-10-01 21:13:54 -04: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.