personal webpage, portfolio, blog,
Go to file
matthieu42morin b3c0a296bd dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.github/workflows dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.vscode config change 2024-02-13 16:42:36 +01:00
src dzgnxfjxfg 2024-03-16 10:12:50 +01:00
static dzgnxfjxfg 2024-03-16 10:12:50 +01:00
tests dzgnxfjxfg 2024-03-16 10:12:50 +01:00
tests-examples dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.dockerignore dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.editorconfig init with Skeleton 2023-11-02 00:36:58 +01:00
.eslintignore dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.eslintrc.cjs init with Skeleton 2023-11-02 00:36:58 +01:00
.gitignore dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.npmrc init with Skeleton 2023-11-02 00:36:58 +01:00
.prettierignore dzgnxfjxfg 2024-03-16 10:12:50 +01:00
.prettierrc init with Skeleton 2023-11-02 00:36:58 +01:00
Dockerfile ignores 2024-03-16 10:08:34 +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
csp-directives.js dzgnxfjxfg 2024-03-16 10:12:50 +01:00
mdsvex.config.js dzgnxfjxfg 2024-03-16 10:12:50 +01:00
package.json dzgnxfjxfg 2024-03-16 10:12:50 +01:00
playwright.config.ts dzgnxfjxfg 2024-03-16 10:12:50 +01:00
pnpm-lock.yaml dzgnxfjxfg 2024-03-16 10:12:50 +01:00
postcss.config.cjs init with Skeleton 2023-11-02 00:36:58 +01:00
svelte.config.js dzgnxfjxfg 2024-03-16 10:12:50 +01:00
tailwind.config.ts init with Skeleton 2023-11-02 00:36:58 +01:00
tsconfig.json dzgnxfjxfg 2024-03-16 10:12:50 +01:00
vite.config.ts dzgnxfjxfg 2024-03-16 10:12:50 +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.