Svelte frontend for Damillora's Virtual Memoir
Go to file
Damillora 69c01e02fd
continuous-integration/drone/push Build is passing Details
feat: post process ghost html with rehype
2022-07-26 00:11:32 +07:00
src feat: post process ghost html with rehype 2022-07-26 00:11:32 +07:00
static feat: initial commit 2022-07-24 03:52:23 +07:00
.drone.yml chore: add ci 2022-07-24 23:20:12 +07:00
.eslintignore feat: initial commit 2022-07-24 03:52:23 +07:00
.eslintrc.cjs feat: initial commit 2022-07-24 03:52:23 +07:00
.gitignore feat: initial commit 2022-07-24 03:52:23 +07:00
.npmrc feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierignore feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierrc feat: initial commit 2022-07-24 03:52:23 +07:00
Dockerfile feat: update not found handling 2022-07-24 05:04:56 +07:00
LICENSE feat: initial commit 2022-07-24 03:52:23 +07:00
README.md feat: initial commit 2022-07-24 03:52:23 +07:00
package.json feat: post process ghost html with rehype 2022-07-26 00:11:32 +07:00
pnpm-lock.yaml feat: post process ghost html with rehype 2022-07-26 00:11:32 +07:00
svelte.config.js feat: update not found handling 2022-07-24 05:04:56 +07:00
tsconfig.json feat: initial commit 2022-07-24 03:52:23 +07:00
vite.config.js feat: update not found handling 2022-07-24 05:04:56 +07: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 init svelte

# create a new project in my-app
npm init svelte 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.