mirror of
https://github.com/gregberge/loadable-components.git
synced 2025-12-08 19:46:26 +00:00
38 lines
492 B
Markdown
38 lines
492 B
Markdown
> WORK IN PROGRESS
|
|
|
|
# Get the SSR example running
|
|
|
|
Steps:
|
|
|
|
1. Download repository
|
|
|
|
```bash
|
|
git clone https://github.com/gregberge/loadable-components.git
|
|
```
|
|
|
|
2. move into example directory
|
|
|
|
```bash
|
|
cd ./loadable-components/examples/server-side-rendering-async-node
|
|
```
|
|
|
|
3. install [https://yarnpkg.com/lang/en/docs/install](yarn) if haven't already
|
|
4. install project dependencies
|
|
|
|
```bash
|
|
yarn
|
|
```
|
|
|
|
5. run locally or build and serve
|
|
|
|
```bash
|
|
yarn dev
|
|
|
|
# Or
|
|
|
|
yarn build
|
|
yarn start
|
|
```
|
|
|
|
🍻
|