personal webpage, portfolio, blog,
Go to file
Matthieu Morin 734f698d47 basic service-worker 2023-11-16 10:46:28 +01:00
.vscode fixing dev env bugs by improving configs 2023-11-03 23:57:27 +01:00
src basic service-worker 2023-11-16 10:46:28 +01:00
static adding empty about / contact pages, logo 2023-11-11 19:14:05 +01:00
.dockerignore init with Skeleton 2023-11-02 00:36:58 +01:00
.editorconfig init with Skeleton 2023-11-02 00:36:58 +01:00
.eslintignore init with Skeleton 2023-11-02 00:36:58 +01:00
.eslintrc.cjs init with Skeleton 2023-11-02 00:36:58 +01:00
.gitignore Mdsvex Posts, posts Api. config 2023-11-08 23:56:48 +01:00
.npmrc init with Skeleton 2023-11-02 00:36:58 +01:00
.prettierignore init with Skeleton 2023-11-02 00:36:58 +01:00
.prettierrc init with Skeleton 2023-11-02 00:36:58 +01:00
LICENSE Initial commit 2023-11-01 23:10:06 +00:00
README.md init with Skeleton 2023-11-02 00:36:58 +01:00
mdsvex.config.js Mdsvex Posts, posts Api. config 2023-11-08 23:56:48 +01:00
package.json Updating dependencies, introducing font awesome 2023-11-11 15:43:47 +01:00
playwright-ct.config.ts Mdsvex Posts, posts Api. config 2023-11-08 23:56:48 +01:00
pnpm-lock.yaml Updating dependencies, introducing font awesome 2023-11-11 15:43:47 +01:00
postcss.config.cjs init with Skeleton 2023-11-02 00:36:58 +01:00
svelte.config.js Sveltekit under-the-hood magic fix, need postcss preprocess first, include .svelte-kit/ 2023-11-16 04:29:08 +01:00
tailwind.config.ts init with Skeleton 2023-11-02 00:36:58 +01:00
tsconfig.json Sveltekit under-the-hood magic fix, need postcss preprocess first, include .svelte-kit/ 2023-11-16 04:29:08 +01:00
vite.config.ts init with Skeleton 2023-11-02 00:36:58 +01: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.