Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/korosuke613/homepage-2nd

@korosuke613 のホムペ(2代目)
https://github.com/korosuke613/homepage-2nd

astro nodejs react typescript

Last synced: 3 months ago
JSON representation

@korosuke613 のホムペ(2代目)

Awesome Lists containing this project

README

        

# korosuke613 homepage

## Setup
```console
npm install
```

## Development

```console
npm run dev
```

## Build

```console
npm run build
```

Preview generated artifacts

```console
npm run preview
```

### Convert to webp
example

```
cwebp ./hoge.png -o hoge.webp
```

## Structure

### Root

#### astro.config.mjs
Astroの設定関連。
https://docs.astro.build/ja/core-concepts/project-structure/#astroconfigmjs

### public
Astro のビルドプロセスで処理する必要のないファイルやアセットを格納する場所。
https://docs.astro.build/ja/core-concepts/project-structure/#public

#### assets

### src

#### images

#### pages
ページを格納する場所。必須。
https://docs.astro.build/ja/core-concepts/project-structure/#srcpages

##### posts

#### partials

#### templates

#### utils