UUUUUUUUUH my website https://midou.dev
Go to file
Midou36O 3e581b0296
New blogpost and fix mobile layout
2024-03-27 12:08:47 +00:00
.gitea/workflows CI 2024-01-06 14:33:16 +01:00
.vscode rework this messy website partially 2023-07-24 17:41:54 +01:00
src New blogpost and fix mobile layout 2024-03-27 12:08:47 +00:00
static Fix the image (and make it permanent this time.) 2024-03-27 00:59:36 +00:00
.eslintignore rework this messy website partially 2023-07-24 17:41:54 +01:00
.eslintrc.cjs rework this messy website partially 2023-07-24 17:41:54 +01:00
.gitignore rework this messy website partially 2023-07-24 17:41:54 +01:00
.gitmodules Restore the blog. Now fully working. 2023-12-29 16:14:25 +01:00
.npmrc rework this messy website partially 2023-07-24 17:41:54 +01:00
.prettierignore rework this messy website partially 2023-07-24 17:41:54 +01:00
.prettierrc akis?? 2023-01-19 19:20:03 +01:00
Dockerfile remove pnpm-lock.yaml 2023-12-30 14:30:07 +01:00
README.md Svelte 2023-01-19 18:04:23 +01:00
package.json New dependency 2024-01-25 17:54:02 +01:00
svelte.config.js Move to node, update all dependencies, fix unocss, add a dockerfile and 2023-12-29 20:13:37 +01:00
tsconfig.json Svelte-add 2023-01-19 18:05:09 +01:00
unocss.config.ts Move to node, update all dependencies, fix unocss, add a dockerfile and 2023-12-29 20:13:37 +01:00
vite.config.ts Move to node, update all dependencies, fix unocss, add a dockerfile and 2023-12-29 20:13:37 +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.