Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/myxogastria0808/react_routing


https://github.com/myxogastria0808/react_routing

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

## 静的サイトの作成方法

### 環境構築
```shell
yarn create vite projectFolder
cd projectFolder
yarn
#ルーティングのためのライブラリ
yarn add react-router-dom
#bootstrapのインストール
yarn add react-bootstrap bootstrap
```

### 開発サーバーの起動
```shell
yarn dev
```
リロードは、rを押す。 (一応ホットリロード)
終了時は、qを押す。

### gitへのpush (Viteの場合)
```shell
git init
git remote add origin "URL"
git branch -M main
git add .
git commit -m "commit msg"
git push -u origin main
```