Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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代目)
- Host: GitHub
- URL: https://github.com/korosuke613/homepage-2nd
- Owner: korosuke613
- License: mit
- Created: 2022-08-11T07:25:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T18:34:11.000Z (9 months ago)
- Last Synced: 2024-05-02T06:00:01.089Z (9 months ago)
- Topics: astro, nodejs, react, typescript
- Language: TypeScript
- Homepage: https://korosuke613.dev/
- Size: 17.7 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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